每当我在HTML
模式下缩进PHP
时,emacs (22.1.1, basic install on Redaht Linux over Putty-SSH)
会弹出一个框架并告诉我获取MUMODE
或somesuch
额外的附加内容。我安装了PHP
模式没有太大的麻烦,但我不知道如何进行这种多模式滚动。
How to install and configure multi-mode
How to disable pop-ups in Emacs
答案 0 :(得分:3)
如果你正在运行emacs 22,你应该能够运行:
M-x nxhtml-mumamo
编辑html文档时。您可能希望将其添加到自动模式列表中,以使其自动加载html文档。有关详细信息,请参阅此处:
http://www.emacswiki.org/cgi-bin/wiki/MuMaMo
http://www.emacswiki.org/cgi-bin/wiki/PhpMode
答案 1 :(得分:1)
web-mode.el可在http://web-mode.org上找到
这个主要模式旨在编辑html php模板(使用JS和CSS)
在.emacs
(require 'web-mode)
(add-to-list 'auto-mode-alist '("\\.phtml$" . web-mode))
答案 2 :(得分:0)
多模式和html-php-mode可以在这里找到:http://www.loveshack.ukfsn.org/emacs/
可以使用以下命令初始化:
(require 'html-php)
(add-to-list 'auto-mode-alist '("\\.php\\'" . html-php-mode))