Explorar el Código

Add my-set-require-final-newline

master
10sr hace 5 años
padre
commit
70fe675277
Firmado por: 10sr ID de clave GPG: C384BB17CBB19347
Se han modificado 1 ficheros con 9 adiciones y 0 borrados
  1. +9
    -0
      emacs.el

+ 9
- 0
emacs.el Ver fichero

@@ -352,6 +352,15 @@ found, otherwise returns nil."
;; Basically it should not set globally (instead use something like file local
;; variables or editorconfig), but for most cases I just need this...
(setq-default require-final-newline t)
(defun my-set-require-final-newline ()
"Set `require-final-newline'."
(set (make-local-variable 'require-final-newline)
mode-require-final-newline))

(add-hook 'prog-mode-hook
'my-set-require-final-newline)
(add-hook 'conf-mode-hook
'my-set-require-final-newline)

;; Used from term-cursor
;; hbar is too hard to find...


Cargando…
Cancelar
Guardar