每当我HTML
在PHP
模式下缩进时,都会emacs (22.1.1, basic install on Redaht Linux over Putty-SSH)
弹出一个框架并告诉我获取MUMODE
或somesuch
额外的附加组件。我毫不费力地安装了PHP
模式,但我不知道如何让这种多模式滚动。
我想知道2件事
How to install and configure multi-mode
How to disable pop-ups in Emacs
如果您正在运行 emacs 22,您应该能够运行:
M-x nxhtml-mumamo
编辑 html 文档时。您可能希望将其添加到您的 auto-mode-alist 以使其自动加载 html 文档。请参阅此处了解更多信息:
http://www.emacswiki.org/cgi-bin/wiki/MuMaMo
http://www.emacswiki.org/cgi-bin/wiki/PhpMode
web-mode.el 可以在http://web-mode.org
这个主要模式用于编辑 html php 模板(带有 JS 和 CSS) 将这两行添加到你的.emacs
(require 'web-mode)
(add-to-list 'auto-mode-alist '("\\.phtml$" . web-mode))
多模式和 html-php-mode 可以在这里找到:http ://www.loveshack.ukfsn.org/emacs/
它可以用以下方式初始化:
(require 'html-php)
(add-to-list 'auto-mode-alist '("\\.php\\'" . html-php-mode))