Ver a proveniência

Add custom hook for readonly

master
10sr há 6 anos
ascendente
cometimento
65474a9f7c
Assinados por: 10sr ID da chave GPG: 7BEC428194130EB2
1 ficheiros alterados com 7 adições e 0 eliminações
  1. +7
    -0
      emacs.el

+ 7
- 0
emacs.el Ver ficheiro

@@ -643,6 +643,13 @@ found, otherwise returns nil."
(add-hook 'editorconfig-custom-hooks
'editorconfig-custom-majormode))

(add-hook 'editorconfig-custom-hooks
(lambda (props)
(let ((r (gethash 'readonly props)))
(when (and (string= r "true")
(not buffer-read-only))
(read-only-mode 1)))))

;; (when (fboundp 'editorconfig-charset-extras)
;; (add-hook 'editorconfig-custom-hooks
;; 'editorconfig-charset-extras))


Carregando…
Cancelar
Guardar