我的大部分编程工作都是使用 emacs 的。我安装了 nXhtml 只是为了将它与 PHP 和 Django 模板一起使用。我在 .emacs 中启用 nXhtml 模式的方式是:
(load "~/.emacs.d/nxhtml/autostart.el")
(setq mumamo-background-colors nil)
(add-to-list 'auto-mode-alist '("\\.html$" . django-html-mumamo-mode)
不幸的是,无论文件类型如何,emacs 从一开始就始终启用该模式。有没有办法只在需要时启用它,仅适用于 .html、.php 文件?谢谢!