有没有办法改变C ++的VS2010缩进规则?
基本上我只想删除命名空间内容的自动缩进。
自:
namespace name {
//contents automatically indented
class MyClass
{
//...
};
}
到
namespace name {
//contents automatically indented
class MyClass
{
//...
};
}
答案 0 :(得分:1)
是的,有一个宏可用,从积极的反馈来看,它运作良好。代码为here。
安装完成后,可以在Macro Explorer(Tools->Macros->Macro Explorer
)中访问宏。这不适用于VS Express Editions。
Tools > Options > Text Editor > C++ > Formatting