最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

c++ - How to stop VS Code from wrongly indenting top level namespaces? - Stack Overflow

programmeradmin2浏览0评论

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.

发布评论

评论列表(0)

  1. 暂无评论