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

所属分类: 软件编程 / C 语言 阅读数: 52
收藏 0 赞 0 分享

安装 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": "`~!@#$%^&*()-=+[{]}\\|;:'\",.<>/?·~!¥…()—【】、;:‘'“”,。《》? ",

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


"files.autoGuessEncoding": true,

}

更多精彩内容其他人还在看

C语言数组入门之数组的声明与二维数组的模拟

这篇文章主要介绍了C语言数组入门之数组的声明与二维数组的模拟,数组学习的同时也要相应理解C语言指针的作用,需要的朋友可以参考下
收藏 0 赞 0 分享

C语言中变量与其内存地址对应的入门知识简单讲解

这篇文章主要介绍了C语言中变量与其内存地址对应的入门知识简单讲解,同时这也是掌握指针部分知识的基础,需要的朋友可以参考下
收藏 0 赞 0 分享

讲解C语言编程中指针赋值的入门实例

这篇文章主要介绍了讲解C语言编程中指针赋值的入门实例,通过const int i与int *const pi这样两个例子来分析指针的赋值和地址指向,需要的朋友可以参考下
收藏 0 赞 0 分享

C语言中的结构体的入门学习教程

这篇文章主要介绍了C语言中的结构体的入门学习教程,以struct语句定义的结构体是C语言编程中的重要基础,需要的朋友可以参考下
收藏 0 赞 0 分享

C语言编程入门之程序头文件的简要解析

这篇文章主要介绍了C语言编程入门之程序头文件的简要解析,包括头文件重复包含问题等方面的说明,需要的朋友可以参考下
收藏 0 赞 0 分享

C语言编程中的联合体union入门学习教程

这篇文章主要介绍了C语言编程中的联合体union入门学习教程,也是C语言入门学习中的基础知识,需要的朋友可以参考下
收藏 0 赞 0 分享

C语言中数组作为函数的参数以及返回值的使用简单入门

这篇文章主要介绍了C语言中数组作为函数的参数以及返回值的使用简单入门,这里以一维数组作为基本条件进行例子讲解,需要的朋友可以参考下
收藏 0 赞 0 分享

MySQL的内存表的基础学习教程

这篇文章主要介绍了MySQL的内存表的基础学习教程,包括内存表的创建以及使用限制等等,需要的朋友可以参考下
收藏 0 赞 0 分享

C++中头文件的概念与基本编写方法

这篇文章主要介绍了C++中头文件的概念与基本编写方法,是C++入门学习中的基础知识,需要的朋友可以参考下
收藏 0 赞 0 分享

jQuery移动页面开发中主题按钮的设计示例

这篇文章主要介绍了jQuery移动页面开发中主题按钮的设计示例,jQuery是当今最具人气的JavaScript开发类库,需要的朋友可以参考下
收藏 0 赞 0 分享
查看更多