VSCode 定制 nodejs 运行快捷键

问题的场景呢,是想借着使用 js 同时刷一下算法题,然后学习一下 js 的基本使用。然后在 VSCode 中配置一下最方便。

首先是要安装 multi-command 这个插件的。然后定制快捷键即可。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"key": "ctrl+f5",
"command": "extension.multiCommand.execute",
"when": "editorTextFocus && editorLangId == 'javascript'",
"args": {
"sequence": [
"workbench.action.files.saveAll",
{
"command": "workbench.action.terminal.sendSequence",
"args": {
"text": "clear \u000D"
}
},
"workbench.action.terminal.focus",
{
"command": "workbench.action.terminal.sendSequence",
"args": {
"text": "node '${file}'\u000D"
}
},
"workbench.action.focusActiveEditorGroup"
]
}
}

VSCode 定制 nodejs 运行快捷键
http://fanlumaster.github.io/2022/08/24/VSCode-定制-nodejs-运行快捷键/
作者
fanlumaster
发布于
2022年8月24日
许可协议