美文网首页
2018-10-10 vscode自己配置终端快捷键

2018-10-10 vscode自己配置终端快捷键

作者: 五大RobertWu伍洋 | 来源:发表于2018-10-13 20:06 被阅读4次

    最后在keybinding.json中把下面的代码复制过去覆盖默认值,当然,绑定的快捷键你们可以根据自己习惯调整。

        // 将键绑定放入此文件中以覆盖默认值
        [
        {
        "key": "ctrl+tab",
        "command": "workbench.action.terminal.focusNext", // 切换到下一个终端
        "when": "terminalFocus"
        },
        {
        "key": "ctrl+w",
        "command": "workbench.action.terminal.kill", // 关闭当前终端
        "when": "terminalFocus"
        },
        {
        "key": "ctrl+t",
        "command": "workbench.action.terminal.new", // 打开新的终端
        "when": "terminalFocus"
        },
        {
        "key": "ctrl+1",
        "command": "workbench.action.terminal.focusAtIndex1", // 打开终端1
        "when": "terminalFocus"
        },
        {
        "key": "ctrl+2",
        "command": "workbench.action.terminal.focusAtIndex2",
        "when": "terminalFocus"
        },
        {
        "key": "ctrl+3",
        "command": "workbench.action.terminal.focusAtIndex3",
        "when": "terminalFocus"
        },
        {
        "key": "ctrl+4",
        "command": "workbench.action.terminal.focusAtIndex4",
        "when": "terminalFocus"
        }
        ]

    相关文章

      网友评论

          本文标题:2018-10-10 vscode自己配置终端快捷键

          本文链接:https://www.haomeiwen.com/subject/aqvpaftx.html