我正在使用来自https://github.com/myfreeweb/django-mode的 Aquamacs 和 django-mode 2.1 版。我通过添加安装它(安装 yasnippets 之后)
(require 'django-html-mode)
(require 'django-mode)
(yas/load-directory "path-to/django-mode/snippets")
(add-to-list 'auto-mode-alist '("\\.djhtml$" . django-html-mode))
到我的 .emacs 文件。但有时 Aquamacs 使用标准 HTML 模式而不是 django-html-mode。只要文件以 html 标记开头,就会发生这种情况。
我必须进行哪些更改才能使 Aquamacs 优先考虑文件的扩展名而不是其内容(至少对于 .djthml 文件 - 其他一切正常)?