如何使用 nxhtml 配置 Emacs (v 23) 以遵循 Kohana 编码标准?
我正在尝试配置 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")
I am trying to configure Emacs v23 to follow Kohana coding standards for PHP. I am using Emacs with nxhtml plugin.
I can see the indent-tabs-mode is set to t in the buffer, but when I press tab to indent the code, I see two spaces are inserted not the TAB character.
What could be wrong?
Here the content of my .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")
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是 mumamo 中的一个 bug,现在 已修复。
This was a bug in mumamo, now fixed.
在你的 .emacs 中应该完成这项工作:
In your .emacs that should do the job: