VS Code 代码格式化方法

Visual Studio Code可以通过以下快捷键 格式化代码:

On Windows   	Shift + Alt + F
On Mac   		Shift + Option + F
On Ubuntu   	Ctrl + Shift + I

VSCode更改格式化C++代码方式

File --> Preference --> setting --> 搜索 clang_format --> 
在C_Cpp:Clang_format_fallback Style的输入窗中填入如下代码风格之一:
Visual Studio LLVM,Google,Chromuim, Mozilla, WebKit
或者:
{ BasedOnStyle: LLVM, IndentWidth: 4 }
//IndentWidth是缩进值,可自定义,默认为2

My Clang_format_style

 { BasedOnStyle:     Google, IndentWidth : 4, ColumnLimit : 200, BinPackArguments : false, BinPackParameters : false, BreakBeforeBraces : Custom, BraceWrapping : {     AfterFunction:         true     } }

VS Code C++ 代码格式化方法(clang-format)

你可能感兴趣的:(tools)