我的问题是在新行中使用大括号,我得到了额外的缩进,如下面的代码所示。
我在 debian-lenny 上使用 emacs 22.2,我已经从 github 安装了 php-mode.el
(https://github.com/ejmr/php-mode/blob/master/php-mode.el)
我的 .emacs 只包含键绑定(不用于缩进)
if (logical condition)
{
avariable
#COMMENT
if (logical condition)
{
if(condition)
{
variable
................
我已经为所有 php 文件尝试了 PEAR 模式,我已经尝试了制表符模式缩进。
请问,我做错了什么?
更新:
以上是默认的“GNU”缩进样式。对于标准 php 缩进,将以下内容添加到您的 .emacs
(setq c-default-style "linux" c-basic-offset 4)