admin管理员组文章数量:1344546
My clang_format
mandates the following behavior:
namespace test
{
namespace inner
{
int test;
int test2;
} // namespace inner
namespace small
{
}
class MockSerializeWriter
{
};
} // namespace test
Via this config:
BasedOnStyle: Google
IndentWidth: 4
ColumnLimit: 120
AlignConsecutiveAssignments: true
BreakBeforeBraces: Allman
NamespaceIndentation: Inner
FixNamespaceComments: true
ShortNamespaceLines: 2
However, when I press enter after namespace test {
, a new line is added. When I paste code in it, it is indented.
I want that to stop. I tried disabling it in settings, no effect:
It's just a little thing, but it's so annoying when creating many smaller components.
本文标签: cHow to stop VS Code from wrongly indenting top level namespacesStack Overflow
版权声明:本文标题:c++ - How to stop VS Code from wrongly indenting top level namespaces? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743748614a2532227.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论