소스 검색

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


불러오는 중...
취소
저장