使用Emacs php-mode时双缩进

时间:2011-08-29 09:47:49

标签: php emacs php-mode

我的问题是,在新行中使用大括号,我得到了额外的缩进,如下面的代码所示。

我在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模式,我尝试过tab-mode indents。

拜托,我做错了什么?

更新:

以上是默认的“GNU”缩进样式。对于标准的PHP缩进,请将以下内容添加到.emacs

(setq c-default-style“linux”           c-basic-offset 4)

在此处找到答案:http://www.emacswiki.org/emacs/IndentingC#toc2

1 个答案:

答案 0 :(得分:2)

以上是默认的“GNU”缩进样式。对于标准的PHP缩进,请将以下内容添加到.emacs

(setq c-default-style“linux”c-basic-offset 4)

在此处找到答案:http://www.emacswiki.org/emacs/IndentingC#toc2