• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

win10环境下vscode Linux C++开发代码自动提示配置(基于WSL)

c++ 搞代码 4年前 (2022-01-06) 34次浏览 已收录 0个评论

这篇文章主要介绍了win10环境下vscode Linux C++开发代码自动提示配置(基于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": [<a style="color:transparent">来源gao($daima.com搞@代@#码(网</a> "/**" ], "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, } 

以上就是win10环境下vscode Linux C++开发代码自动提示配置(基于WSL)的详细内容,更多请关注gaodaima搞代码网其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:win10环境下vscode Linux C++开发代码自动提示配置(基于WSL)
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址