4

每当我HTMLPHP模式下缩进时,都会emacs (22.1.1, basic install on Redaht Linux over Putty-SSH)弹出一个框架并告诉我获取MUMODEsomesuch额外的附加组件。我毫不费力地安装了PHP模式,但我不知道如何让这种多模式滚动。


我想知道2件事

How to install and configure multi-mode
How to disable pop-ups in Emacs
4

3 回答 3

3

如果您正在运行 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

于 2008-09-22T02:39:48.330 回答
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))
于 2012-09-04T21:31:17.817 回答
0

多模式和 html-php-mode 可以在这里找到:http ://www.loveshack.ukfsn.org/emacs/

它可以用以下方式初始化:

(require 'html-php)
(add-to-list 'auto-mode-alist '("\\.php\\'" . html-php-mode))
于 2009-11-02T15:23:23.920 回答