在集成终端与面板间切换

57 阅读1分钟

参考:stackoom.com/question/2t… ctrl+shift+p设置面板keybings.json keybindings.json配置

{
    "key": "ctrl+`",
    "command": "workbench.action.terminal.focus",
    "when": "editorTextFocus"
},
{
    "key": "ctrl+`",
    "command": "workbench.action.focusActiveEditorGroup",
    "when": "terminalFocus"
},
{
    "key": "alt+`",
    "command": "workbench.action.terminal.toggleTerminal"
}