重学C++ 重构你的C++知识体系
vscode自动识别猜测编码方式:
"files.autoGuessEncoding": true,
"[c]": {
"files.encoding": "gbk"
},
"[cpp]":{
"files.encoding": "gbk"
},
"files.eol": "\n",
视图, 字体,tab方面的配置:
//VSCode自带的小地图太宽
//写代码时太占用可编辑区域可以调小
"editor.minimap.maxColumn": 40,
// tab = 4 空格,以及显示tab
"editor.fontSize": 15,
"editor.detectIndentation": false,
"editor.tabSize": 4,
"editor.renderControlCharacters": true,
"editor.renderWhitespace": "all",
"editor.fontFamily": "Consolas, 'Menlo', Menlo",
"editor.formatOnPaste": false,
"editor.lineHeight": 24,