方法一:在UI界面设置,方法是:设置键->Settings
方法二:也可以打开setting.json文件进行设置,方法是:设置键->Command Palette,在选择框的下拉列表中选择“Preferences: Open Settings (JSON)”
2. 控制台
按Ctrl+Shift+P打开VSCode控制台,在控制台中输入命令可以实现很多功能。
3. 打开工程
在VSCode界面点击File->Open Folder,然后选择文件夹
在终端中运行code [project path]
4. 配置文件
用VSCode打开一个工程后,它会在工程中建一个.vscode文件夹,里面有三个文件
tasks.json (compiler build settings)
launch.json (debugger settings)
c_cpp_properties.json (compiler path and IntelliSense settings)
5. 环境配置
c_cpp_properties.json文件主要是设置系统级的大环境,基本上不用改,除非有第三方库
{
"configurations": [
{
"name": "Linux",
"browse": {
"path": [
"${workspaceFolder}"
],
"limitSymbolsToIncludedHeaders": true
},
"includePath": [
"${workspaceFolder}"
],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "c11",
"cppStandard": "c++17",
"intelliSenseMode": "clang-x64"
}
],
"version": 4
}
6. 编译
6.1. 自定义编译
主要通过 设置任务(动作)来实现。
tasks.json文件相当于vscode的.sh或.bat文件,用来记录一系列 *** 作的宏。
一系列动作,那就可以用来设置 如何编译文件,如何 运行文件,几乎.sh能干的都可以干。
打开控制台,输入Tasks: Configure Tasks,再选择Create tasks.json file from templates,选择Others模板,就自动生成了一个tasks.json文件,编写参数来调整设置。
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build1111", //你的设置文件名,可随便起
"type": "shell", //运行task的平台,一般是shell
"command": "bash ./build.sh", //普通的shell命令,运行你的.sh文件
"group": {
vscode写html 代码不能运行 Code language not supported or defined是没有正确调试造成的,解决方法为:1、首先需要在这里打开vs code软件,新建后才能编译测试。2、此时我们就能在这里设置vs code软件的名称,既能开始设置。3、此时我们就能在这里选择项目的框架,选择后点击创建命令即可。4、当我们打开vs code软件并创建项目,就能来到这个界面窗口。5、此时我们就能在这里点击调试的菜单命令,点击后即可对命令的使用。6、因此,点击调试即可对vscode程序编译运行即可,如图所示。
vscode软件》文件》首选项》设置》修改配置文件settings.json中:根据语言运行》"code-runner.executorMap":{"javascript":"node","html":"C:\\Users\\Administrator\\AppData\\Local\\google\\Chrome\\Application\\chrome.exe"}根据文件后缀名运行》"code-runner.executorMapByGlob":{"*.js":"node"}vscode配置文件settings_json参考--CodeRunner插件便捷使用
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)