X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=stage5%2Fmisc%2Femacs%2Femacsrc;h=ad63356f69c8dbc24aadfdcb315378cabf8f806a;hb=39a19cacbb9a44c5ceadd254463ea87c588a82a3;hp=0142ea81c69bf47637b302156847a7e95eef13b2;hpb=131d3a522878352b702de2f1ce9a5d7462f16e04;p=hvlinux.git diff --git a/stage5/misc/emacs/emacsrc b/stage5/misc/emacs/emacsrc index 0142ea8..ad63356 100644 --- a/stage5/misc/emacs/emacsrc +++ b/stage5/misc/emacs/emacsrc @@ -32,6 +32,9 @@ ;; Pour avoir les accents (set-keyboard-coding-system 'utf-8) +;; Pour que la touche backspace fonctionne aussi en mode console: +(normal-erase-is-backspace-mode 0) + ;; Set up the keyboard so the delete key on both the regular keyboard ;; and the keypad delete the character under the cursor and to the right ;; under X, instead of the default, backspace behavior. @@ -122,10 +125,10 @@ (c-set-style "K&R") (setq c-basic-offset 4)) -;; Default for .h and .d files -> linux mode. +;; Default for .h and .c files -> linux mode. (add-to-list 'auto-mode-alist '("\.[ch]$" . linux-c-mode)) -;; Default for DAP .h and .d files -> linux mode. +;; Default for DAP .h and .c files -> linux mode. (add-to-list 'auto-mode-alist '(".*/dap.*" . dap-c-mode)) ;; Verilog mode @@ -157,7 +160,10 @@ (add-to-list 'auto-mode-alist '("\\.pas$" . delphi-mode)) ;; Add the .mak suffix to the auto-mode-alist: -(setq auto-mode-alist (cons '("\\.mak\\'" . makefile-mode) auto-mode-alist)) +(setq auto-mode-alist (cons '("\\.mak$" . makefile-mode) auto-mode-alist)) + +;; Add the Makefile prefix to the auto-mode-alist: +(add-to-list 'auto-mode-alist '("Makefile" . makefile-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