astyle没有缩进以。或 - >

时间:2011-04-07 19:20:37

标签: c++ coding-style

我尝试使用astyle来设计我的代码,但是当它来到

some_structure[some_index].
    method_call(some_parameters);

它会把它变成

some_structure[some_index].
method_call(some_parameters);

我正在使用--style = ansi。我没有在帮助文件中看到任何相应的选项。

你能帮忙吗?

1 个答案:

答案 0 :(得分:0)

astyle无法识别和缩进你的代码,因为换行,甚至Uncrustify(http://uncrustify.sourceforge.net/)有很多选项,不能。

您可以使用UniversalIndentGUI(http://universalindent.sourceforge.net/)查看实时更改,并为您喜爱的代码美化保存配置文件。