Ubuntu Vscode C++ 代码自动补全配置
{
“cmake.configureOnOpen”: true,
“editor.fontSize”: 16,
“editor.minimap.enabled”: true,
“tabnine.experimentalAutoimports”: true,
“[cpp]”: {
“editor.defaultFormatter”: “ms-vscode.cpptools”,
“editor.quickSuggestions”: true,
“editor.wordbasedSuggestions”: true
},
“[c]”: {
“editor.quickSuggestions”: true
},
“window.zoomLevel”: 2,
“C_Cpp.intelliSenseEngineFallback”: “Enabled”,
“C_Cpp.autocomplete”: “Disabled”,
“C_Cpp.default.cStandard”: “c11”,
“editor.largeFileOptimizations”: false,
“explorer./confirm/iDelete”: false,
“editor.suggest.snippetsPreventQuickSuggestions”: false
}



