win10環境下 vs code Linux C++ 開發代碼自動提示配置(基於WSL)

  1. 安裝 vs code, 安裝 c/c++ 插件 C/C++ IntelliSenseTabNine,Bracket Pair Colorizer
  2. 在win10下打開linux子系統設置(具體搜索教程),在應用商店安裝ubutu16.
  3. 打開File->Preferences->settings,編輯settings.json。
  4. copy 如下的內容替換settings.jsonlinux

    • "C_Cpp.default.compilerPath": "/usr/bin/g++" vs code 會自動識別並啓用安裝的 WSL(ubuntu)內部的g++編譯器(記得安裝ubuntu後安裝gcc)
    • "C_Cpp.default.intelliSenseMode": "gcc-x64" 此處與上面的匹配使用。
    • "C_Cpp.default.includePath" 中除了"/usr/local/include"以外,能夠添加本身的工做目錄以及依賴的第三方目錄。
{
  "C_Cpp.autocomplete": "Default",
  "C_Cpp.updateChannel": "Insiders", 
  "C_Cpp.default.intelliSenseMode": "gcc-x64", 
  "C_Cpp.default.cppStandard": "c++11", 
  "files.autoSave": "afterDelay", 
  "C_Cpp.default.includePath": [
    "/usr/local/include",
    "${workspaceFolder}", 
  ], 
  "C_Cpp.default.cStandard": "c99", 
  "cmake.configureOnOpen": false, 
  "[cpp]": {
    "editor.formatOnSave": false, 
    "editor.defaultFormatter": "ms-vscode.cpptools",
    "editor.quickSuggestions": true
  },
  "gitlens.gitCommands.closeOnFocusOut": true,
  "C_Cpp.commentContinuationPatterns": [

    "/**"
  ],
  "C_Cpp.default.compilerPath": "/usr/bin/g++",
  // Controls if quick suggestions should show up while typing
  "editor.quickSuggestions": {
    "other": true,
    "comments": false,
    "strings": false
},

 // Controls whether suggestions should be accepted on commit characters. For example, in JavaScript, the semi-colon (`;`) can be a commit character that accepts a suggestion and types that character.
"editor.acceptSuggestionOnCommitCharacter": true,

// Controls if suggestions should be accepted on 'Enter' - in addition to 'Tab'. Helps to avoid ambiguity between inserting new lines or accepting suggestions. The value 'smart' means only accept a suggestion with Enter when it makes a textual change
"editor.acceptSuggestionOnEnter": "on",

// Controls the delay in ms after which quick suggestions will show up.
"editor.quickSuggestionsDelay": 10,

// Controls if suggestions should automatically show up when typing trigger characters
"editor.suggestOnTriggerCharacters": true,

// Controls if pressing tab inserts the best suggestion and if tab cycles through other suggestions
"editor.tabCompletion": "on",

// Controls whether sorting favours words that appear close to the cursor
"editor.suggest.localityBonus": true,

// Controls how suggestions are pre-selected when showing the suggest list
"editor.suggestSelection": "recentlyUsed",

// Enable word based suggestions
"editor.wordBasedSuggestions": true,

"editor.minimap.maxColumn": 40,

"editor.wordSeparators": "`~!@#$%^&*()-=+[{]}\\|;:'\",.<>/?·~!¥…()—【】、;:‘’「」,。《》? ",

// Enable parameter hints
"editor.parameterHints.enabled": true,


"files.autoGuessEncoding": true,

}
相關文章
相關標籤/搜索