Visual Studio Code设置自己的C++代码风格
Visual Studio Code使用Microsoft出品的C/C++插件,借助Clang Format工具进行代码格式化。在设置(settings.json)中,可以自行修改代码格式化的样式,如:
{
"C_Cpp.clang_format_fallbackStyle": "{ BasedOnStyle: Google, IndentWidth: 4, TabWidth: 4, ColumnLimit: 120, PointerAlignment: Right, AccessModifierOffset: -2, DerivePointerAlignment: false, SpacesBeforeTrailingComments: 1 }"
}
本文版权,除注明引用的部分外,归作者所有。本文严禁商业用途的转载。非商业用途的转载需在网页明显处署上作者名称及原文链接。