瀏覽代碼

Use after-first-visit-hook for editorconfig-mode

master
10sr 4 年之前
父節點
當前提交
ce3cf3f8d3
簽署人: 10sr GPG 金鑰 ID: 7BEC428194130EB2
共有 1 個檔案被更改,包括 13 行新增12 行删除
  1. +13
    -12
      emacs.el

+ 13
- 12
emacs.el 查看文件

@@ -993,18 +993,19 @@ found, otherwise returns nil."
(define-key ctl-x-map (kbd "C-r") 'my-counsel-recently)
)

(when (safe-require-or-eval 'editorconfig)
(set-variable 'editorconfig-get-properties-function
'editorconfig-core-get-properties-hash)
(editorconfig-mode 1)
(set-variable 'editorconfig-mode-lighter "")
(when (fboundp 'ws-butler-mode)
(set-variable 'editorconfig-trim-whitespaces-mode
'ws-butler-mode))
(with-eval-after-load 'org-src
;; [*.org\[\*Org Src*\[ c \]*\]]
(add-hook 'org-src-mode-hook
'editorconfig-mode-apply t)))
(when (fboundp 'editorconfig-mode)
(add-hook 'after-first-visit-hook
'editorconfig-mode))
(set-variable 'editorconfig-get-properties-function
'editorconfig-core-get-properties-hash)
(set-variable 'editorconfig-mode-lighter "")
(when (fboundp 'ws-butler-mode)
(set-variable 'editorconfig-trim-whitespaces-mode
'ws-butler-mode))
(with-eval-after-load 'org-src
;; [*.org\[\*Org Src*\[ c \]*\]]
(add-hook 'org-src-mode-hook
'editorconfig-mode-apply t))

(when (fboundp 'editorconfig-custom-majormode)
(add-hook 'editorconfig-after-apply-functions


Loading…
取消
儲存