win10環(huán)境下vscode Linux C++開發(fā)代碼自動(dòng)提示配置(基于WSL)
安裝 vs code, 安裝 c/c++ 插件 C/C++ IntelliSense,TabNine,Bracket Pair Colorizer。
在win10下打開linux子系統(tǒng)設(shè)置(具體搜索教程),在應(yīng)用商店安裝ubutu16.
打開File->Preferences->settings,編輯settings.json。
copy 以下的內(nèi)容替換settings.json
- "C_Cpp.default.compilerPath": "/usr/bin/g++" vs code 會(huì)自動(dòng)識別并啟用安裝的 WSL(ubuntu)內(nèi)部的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, }
到此這篇關(guān)于win10環(huán)境下vscode Linux C++開發(fā)代碼自動(dòng)提示配置(基于WSL)的文章就介紹到這了,更多相關(guān)vscode C++代碼自動(dòng)提示內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
- 最新VScode C/C++ 環(huán)境配置的詳細(xì)教程
- Windows10配置VSCode C++環(huán)境(超詳細(xì),面向小白以及大佬們)
- vscode 配置 C/C++編譯環(huán)境(完整教程)
- VsCode安裝和配置c/c++環(huán)境小白教程(圖文)
- VSCode配置C++環(huán)境的方法步驟(MSVC)
- Windows配置VSCode+CMake+Ninja+Boost.Test的C++開發(fā)環(huán)境(教程詳解)
- VSCode 配置C++開發(fā)環(huán)境的方法步驟
- VSCode搭建C/C++編譯環(huán)境的詳細(xì)教程
- VS?Code+msys2配置Windows系統(tǒng)下C/C++開發(fā)環(huán)境
相關(guān)文章
C/C++實(shí)現(xiàn)MD5校驗(yàn)學(xué)習(xí)
MD5全程Message-Digest?Algorithm?5,即消息摘要算法第五版,是屬于hash算法的一種,本文主要介紹了如何在C++中實(shí)現(xiàn)MD5校驗(yàn),需要的可以了解下2024-03-03