更改 VS Code C++ 默认代码风格为 Google C++ Style
安装插件
- Clang-Format
- C/C++
谷歌规范
进入设置
结果
自己规范
由于谷歌是缩进2个空格,括号不换行,
但我喜欢缩进4个空格,括号不换行。只能自定义设置了
设置BreakBeforeBraces
为 Attach
就好了
{ BasedOnStyle: Google, UseTab: Never, IndentWidth: 4, TabWidth: 4, BreakBeforeBraces: Attach, AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: false, ColumnLimit: 0, AccessModifierOffset: -4 }