热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

在Windows10环境下配置VSCode进行LinuxC++开发时的智能代码提示(基于WSL)

在Windows10环境中,通过配置VisualStudioCode(VSCode)实现基于WindowsSubsystemforLinux(WSL)的C++开发,并启用智能代码提示功能。具体步骤包括安装VSCode及其相关插件,如CCIntelliSense、TabNine和BracketPairColorizer,确保在WSL中顺利进行开发工作。此外,还详细介绍了如何在Windows10中启用和配置WSL,以实现无缝的跨平台开发体验。

安装 vs code, 安装 c/c++ 插件 C/C++ IntelliSense,TabNine,Bracket Pair Colorizer。

在win10下打开linux子系统设置(具体搜索教程),在应用商店安装ubutu16.

打开File->Preferences->settings,编辑settings.json。

copy 以下的内容替换settings.json

"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": "&#96;~!&#64;#$%^&*()-&#61;&#43;[{]}\\|;:&#39;\",.<>/?·&#xff5e;&#xff01;&#xffe5;…()—【】、&#xff1b;&#xff1a;‘&#39;“”&#xff0c;。《》&#xff1f; ",

// Enable parameter hints

"editor.parameterHints.enabled": true,

"files.autoGuessEncoding": true,

}

到此这篇关于win10环境下vscode Linux C&#43;&#43;开发代码自动提示配置(基于WSL)的文章就介绍到这了,更多相关vscode C&#43;&#43;代码自动提示内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家&#xff01;



推荐阅读
author-avatar
国芝翰娥264
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有