我在这个主题上发现了这个问题,但是[在 emacs 中] 有没有办法根据扩展设置一个次要模式(或其列表) ?例如,很容易发现可以像这样操纵主要模式
(add-to-list 'auto-mode-alist '("\\.notes\\'" . text-mode))
我最希望能够做的是
(add-to-list 'auto-minor-mode-alist '("\\.notes\\'" . auto-fill-mode))
链接问题的接受答案提到了钩子,特别是temp-buffer-setup-hook
. 要使用它,您必须像这样向钩子添加一个函数
(add-hook 'temp-buffer-setup-hook #'my-func-to-set-minor-mode)
我的问题有两个:
- 有没有更简单的方法来做到这一点,类似于主要模式?
- 如果没有,如何为钩子编写函数?
- 它需要根据正则表达式检查文件路径。
- 如果匹配,则激活所需的模式(例如
auto-fill-mode
)。
对解决方案的微弱和错误的尝试:
;; Enables the given minor mode for the current buffer it it matches regex
;; my-pair is a cons cell (regular-expression . minor-mode)
(defun enable-minor-mode (my-pair)
(if buffer-file-name ; If we are visiting a file,
;; and the filename matches our regular expression,
(if (string-match (car my-pair) buffer-file-name)
(funcall (cdr my-pair))))) ; enable the minor mode
; used as
(add-hook 'temp-buffer-setup-hook
(lambda ()
(enable-minor-mode '("\\.notes\\'" . auto-fill-mode))))