Code Runner插件便捷使用

  • Code Runner:vscode中快速运行代码
  • 支持多种语言
  • 支持文件运行
  • 支持文件中部分代码运行

使用:

1. 安装插件:在扩展(Extensions,快捷键Ctrl+Shift+X)中搜索Code Runner并安装(Install)
2. 配置插件:在settings.json文件(File-Preferences-Settings-Edit in settings.json)中配置

  • 根据语言运行:在settings.json文件中加入code-runner.executorMap设置项:
{
    "code-runner.executorMap": {
        "javascript": "node",
        "php": "C:\\php\\php.exe",
        "python": "python",
        "go": "go run",
        "html": "\"C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe\"",
        "java": "cd $dir && javac $fileName && java $fileNameWithoutExt",
        "c": "cd $dir && gcc $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt"
    }
}
  • 根据文件后缀名运行:在settings.json文件中加入code-runner.executorMapByGlob设置项:
{
    "code-runner.executorMapByGlob": {
        "pom.xml": "cd $dir && mvn clean package",
        "*.test.js": "tap",
        "*.js": "node",
        "*.ss":"scheme" 
    }
}
  • 注意:
    a. 可以直接在设置面板(File-Preferences-Settings)搜索对应属性(比如executorMapByGlob),点击Edit in settings.json进入settings.json文件;
    b. 如果之前添加过该设置,直接在在标签内添加一行即可;
    c. 如果之前没有添加过该设置,需要写入标签(如上图)并写入内容;
    d. 每行中冒号右边的值为cmd下可以运行的命令,简写的话注意配置环境变量。

3. 使用插件
运行:
快捷键: 光标在要运行的文件中时按下Ctrl + Alt + N
运行文件:文件-右键-运行代码(run code)
运行代码片段:选中要运行的代码片段-右键-运行代码(run code)

停止运行:
快捷键:在面板内任意处按下Ctrl + Alt + M
停止运行:Output窗口-右键-Stop Code Run

  • 更多功能及配置参见Code Runner官网:vscode-Code Runner 官网

你可能感兴趣的:(Code Runner插件便捷使用)