如何配置emacs以固定空格自动缩进而不是对齐到左括号?

时间:2010-10-09 07:11:30

标签: emacs indentation

例如,我想要这种缩进方式:

int expectedIndent(int param1,
    int param2){}

而不是这种风格:

int currentIndent(int param1,
                  int param2){}

提前致谢, Utoah

1 个答案:

答案 0 :(得分:1)

试试这个:

(c-set-offset 'arglist-intro '+)
(c-set-offset 'arglist-cont-nonempty '+)
(c-set-offset 'arglist-close '+)

更多详情:http://cc-mode.sourceforge.net/html-manual/Paren-List-Symbols.html#Paren-List-Symbols