美文网首页
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自己配置终端快捷键

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

  • vue

    vscode 快捷键 ctrl + shift + p 打开搜索命令 control + ` 吊起终端,关闭终端...

  • 常用快捷键

    Google快捷键 win10快捷键 Typora快捷键 Linux/Mac 终端快捷键 vscode 快捷键 多...

  • Go IDE

    VSCode 配置VSCode支持Go语言特性 VSCode中使用快捷键Ctrl+Shift+P进行安装界面,输入...

  • No.2 VSCode简单配置、快捷键

    一、VSCode简单配置 1.VSCode设置成中文 1)打开VSCode,按快捷键Ctrl+Shift+P;2)...

  • 配置终端启动vscode和sublime、等前端编辑器

    配置终端启动vscode 手动打开vscode 输入command + shift + p打开命令面板(或者点击專...

  • vscode终端配置

    vscode在win系统下, 默认使用cmd终端, 感觉不太好用。连rm -rf , cp等常用的shell命令也...

  • VSCode 新建 React 项目

    1、VSCode编辑器中使用快捷键ctrl+`打开终端2、在终端输入create-react-app demo,自...

  • VSCode 调试Jest

    VSCode 调试Jest 添加配置 test文件 按F5快捷键

  • mac快捷键收集

    vscode快捷键 Ctrl + Shift + (左上角的键) // 新建终端cmd + k 然后按 cmd ...

网友评论

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

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