Visual Studio Code 开发环境
程序员文章站
2022-06-26 08:42:50
...
Visual Studio Code 开发环境
基础配置
插件
- Chinese (Simplified) Language Pack for Visual Studio Code(中文语言包)
- Beautify——代码美化文件
- Bracket Pair Colorizer——每一对括号用不同颜色区别 (括号强迫症必备)
微信小程序环境
插件
-
小程序开发助手
-
CSS Tree——用于生成样式名
使用方法:
- Ctrl+Shift+P 打开命令面板
- 输入css,找到CSS Tree插件,按回车
- 跳出来的新窗口就是样式名
- 注意!可能要样式名可能有错误,可能需要手动修改部分
-
minapp——代码补全(小程序开发助手可能不够用)
-
Easy LESS——在vs code 写less必备
使用方法:(微信小程序不支持原生less,需要修改配置文件)
-
修改配置
"less.compile": { // 将less 文件生成 .wxss 文件 "outExt": ".wxss" },
-
C/C++环境
编译环境
- 需要先安装编辑环境Ming-W64 自动安装编译Ming环境-AutoVsCEnv WPF
- 配置VScodeC语言C++开发环境教程
- 注意 编译过程中如果出现中文乱码,将文件编码改为GBK
插件
-
C/C++——在vs code 写C/C++必备
-
C/C++ Compile Run —— 启动C/C++(快捷键F6)
使用方法:
- 直接安装即可,编译时,在vs code底部弹出控制台
- 可在扩展设置将:C-cpp-compile-run: Run-in-external-terminal 勾选(Run in a new external terminal),这样可以在编译时将弹出一个黑框框控制台。
配置文件
-
找到 自动编译环境过程中 新创建的文件夹:.vscode(c/cpp,代码存放的那个文件夹)
-
将里面的四个配置文件(如果没有,自己新创建)修改为以下配置
-
c_cpp_properties.json
includePath,compilerPath 注意!要改为自己的路径名
{ "configurations": [ { "name": "Win32", "includePath": [ "${workspaceFolder}/**", // 改为自己的路径名 "E:/MinGW/include/*" ], "defines": [ "_DEBUG", "UNICODE", "_UNICODE" ], "compilerPath": // 改为自己的路径名 "E:/MinGW/bin/gcc.exe", "cStandard": "c11", "cppStandard": "c++17", "intelliSenseMode": "gcc-x64" } ], "version": 4 }
-
launch.json
{ "version": "0.2.0", "configurations": [ { "name": "Debug", "type": "cppdbg", "request": "launch", "program": "${workspaceFolder}/${fileBasenameNoExtension}.exe", "args": [], "stopAtEntry": false, "cwd": "${workspaceFolder}", "environment": [], "externalConsole": true, "MIMode": "gdb", "miDebuggerPath": "E:/MinGW/bin/gdb.exe", "setupCommands": [ { "description": "Enable pretty-printing for gdb", "text": "-enable-pretty-printing", "ignoreFailures": false } ], "preLaunchTask": "build & debug file" } ] }
-
settings.json
{ "files.associations": { "*.cjson": "jsonc", "*.wxss": "css", "*.wxs": "javascript", "iostream": "cpp", "ostream": "cpp", "*.tcc": "cpp", "cstddef": "cpp", "istream": "cpp" } }
-
tasks.json
{ "version": "2.0.0", "tasks": [ { "label": "build & debug file", "type": "shell", "command": "g++", "args": [ "-g", "-o", "${fileBasenameNoExtension}", "${file}" ], "group": { "kind": "build", "isDefault": true } }, { "label": "build & run file", "type": "shell", "command": "g++", "args": [ "-o", "${fileBasenameNoExtension}", "${file}" ], "group": { "kind": "build", "isDefault": true } } ] }
-
web前端
上一篇: Visual Studio Code配置
下一篇: Xshell6中mysql不允许插入中文
推荐阅读
-
利用Typings为Visual Studio Code实现智能提示功能
-
PHP 开发环境配置(Zend Studio)
-
Visual Stduio 2010开发环境搭建教程
-
全新Visual Studio Code预览版0.10.10发布下载
-
Visual Studio怎么重新配置开发环境?
-
再整理:Visual Studio Code(vscode)下的通用C语言环境搭建
-
JDK Android_SDK Android_Studio Genymotion VirtualBox搭建安卓开发环境
-
如何在Mac系统使用Visual Studio Code运行Python
-
使用 Visual Studio Code 进行远程开发
-
Visual Studio Code (vscode) 配置 C / C++ 环境