ソースを参照

Add custom hook for readonly

master
10sr 6年前
コミット
65474a9f7c
署名者: 10sr GPGキーID: 7BEC428194130EB2
1個のファイルの変更7行の追加0行の削除
  1. +7
    -0
      emacs.el

+ 7
- 0
emacs.el ファイルの表示

@@ -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))


読み込み中…
キャンセル
保存