如何使用nxhtml配置Emacs(v 23)以遵循Kohana编码标准?

时间:2011-09-07 11:00:01

标签: php emacs nxhtml

我正在尝试配置Emacs v23以遵循PHP的Kohana编码标准。我正在使用带有nxhtml插件的Emacs。

我可以在缓冲区中看到indent-tabs-mode设置为t,但是当我按Tab键缩进代码时,我看到插入了两个空格而不是TAB字符。

可能有什么不对?

这里是我的.emacs的内容:

(server-start)
;;php mode
(add-hook 'nxhtml-mumamo-mode-hook
        (lambda ()
        (setq indent-tabs-mode t)
        ))

(load "/home/sabya/install/emacs-stuff/nxhtml/autostart.el")

2 个答案:

答案 0 :(得分:1)

这是mumamo中的bug,现在为fixed

答案 1 :(得分:0)

在应该完成工作的.emacs中:

(setq c-default-style "bsd"
      c-basic-offset 4)