0

我为配置文件编写了一个简单的主要模式。我想在保存时检查语法。如何确保my-check-syntax被添加到after-save-hookif 它位于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))
4

1 回答 1

0

使用 和的LOCAL参数。add-hookremove-hook

于 2016-03-15T11:00:50.997 回答