構成ファイルの簡単なメジャー モードを作成しました。保存時に構文を確認したい。が の下にある場合にmy-check-syntax
が追加されていることを確認する方法。after-save-hook
my-config-mode
(defun my-check-syntax ()
;; code: print a message to show whether syntax is correct
)
(define-derived-mode my-config-mode nil "my-config"
(setq-local font-lock-defaults '(my-config-font-lock-keywords))
;; (add-hook 'after-save-hook #'my-check-syntax)
)
(add-to-list 'auto-mode-alist '("\\.myconfigure\\'" . my-config-mode))