X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage5%2Fmisc%2Femacs%2Femacsrc;h=46641239449be33eb5a665be753a21a7cbbdace7;hb=adc9048a0bb32c2adf08c7c3f310adb42e9ddb86;hp=9db7a0eb64e5c9d71da156366b917bf471076117;hpb=0315072ae3bd307eee71718e1a59f923edcbdaca;p=hvlinux.git diff --git a/stage5/misc/emacs/emacsrc b/stage5/misc/emacs/emacsrc index 9db7a0e..4664123 100644 --- a/stage5/misc/emacs/emacsrc +++ b/stage5/misc/emacs/emacsrc @@ -22,6 +22,9 @@ ;; Replaces tabs in files with spaces (setq-default indent-tabs-mode nil) +;; Display trailing whitespace +(setq-default show-trailing-whitespace t) + ;; Makes the compilation buffer always scrolls to follow ;; output as it comes in. (setq compilation-scroll-output t) @@ -60,7 +63,7 @@ (compile "make clean")) (defun compile-make () - (interactive) + (interactive) (compile "make")) (defun checkpatch() @@ -112,9 +115,19 @@ (setq indent-tabs-mode t) ) +(defun dap-c-mode () + "C mode with adjusted defaults for use with DAP source code." + (interactive) + (c-mode) + (c-set-style "K&R") + (setq c-basic-offset 4)) + ;; Default for .h and .d files -> linux mode. (add-to-list 'auto-mode-alist '("\.[ch]$" . linux-c-mode)) +;; Default for DAP .h and .d files -> linux mode. +(add-to-list 'auto-mode-alist '(".*/dap.*" . dap-c-mode)) + ;; Verilog mode (autoload 'verilog-mode "verilog-mode" "Verilog mode" t) (add-to-list 'auto-mode-alist '("\\.v\\'" . verilog-mode)) @@ -140,6 +153,9 @@ (autoload 'muttrc-mode "muttrc-mode" "Major mode to edit muttrc files" t) (add-to-list 'auto-mode-alist '("muttrc\\'" . muttrc-mode)) +;; Default for Altium Delphi scripts (.pas) files -> linux mode. +(add-to-list 'auto-mode-alist '("\\.pas$" . delphi-mode)) + ;; When an Emacs init file gets large or has a lot of function definitions, you ;; should consider compiling it: it will load faster when Emacs starts, and its ;; functions will execute faster. @@ -157,6 +173,33 @@ (add-hook 'after-save-hook 'byte-compile-user-init-file t t))) (add-hook 'emacs-lisp-mode-hook 'my-emacs-lisp-mode-hook) +;; To highlight function calls in CC mode. +(defface font-lock-function-call-face + '((t (:foreground "mediumpurple"))) + "Font Lock mode face used to highlight function calls." + :group 'font-lock-highlighting-faces) +(defvar font-lock-function-call-face 'font-lock-function-call-face) +(add-hook 'c-mode-hook + (lambda () + (font-lock-add-keywords + nil + '(("\\<\\(\\sw+\\) ?(" 1 font-lock-function-call-face)) t))) + +;; Pour colorer TRUE et FALSE +(defconst bm-additional-constant-keywords + (cons + (regexp-opt + (list + "TRUE" "FALSE" + ) 'words) + font-lock-constant-face + )) +(font-lock-add-keywords + 'c-mode + (list + bm-additional-constant-keywords + )) + (custom-set-variables ;; custom-set-variables was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful.