vscode使用总结

vscode配置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"workbench.colorTheme": "One Dark Pro",
"workbench.iconTheme": "vscode-icons",
"editor.renderWhitespace": "all",
"editor.renderControlCharacters": true,
"window.zoomLevel": 0,
"editor.fontSize": 16,
"editor.formatOnSave": true,
"C_Cpp.clang_format_fallbackStyle": "Google",
"clang-format.fallbackStyle": "Google",
"[c]": {
"editor.defaultFormatter": "xaver.clang-format"
},
"clang-format.executable": "C:\\Users\\xxx\\.vscode\\extensions\\ms-vscode.cpptools-0.26.0\\LLVM\\bin\\clang-format.exe",
"files.exclude": {
"**/.git": false // 默认为true,默认配置表示不显示.git文件
},
}

快捷键

按键 说明
shift+alt+F 格式化
shift+ctl+b build
ctrl+x 删除当前行
shift+alt+⬇ 拷贝当前行到下一行
shift+alt+⬆ 拷贝当前行到上一行
shift+ctl+k 删除当前行
alt+⬆ 移动当前行到上一行
alt+⬇ 移动当前行到下一行

vscode调试c/c++程序

VS Code中更改C/C++代码格式样式

clang-foramt格式化选项介绍