2017-08-01 128 views
1

该文档列出了使用集成终端的一些快捷方式:https://code.visualstudio.com/shortcuts/keyboard-shortcuts-linux.pdf如何在Visual Code中的集成终端之间切换?

我打开了多个集成终端。在这些终端之间是否有任何切换的快捷方式,以避免鼠标点击?

enter image description here

+0

阅读本https://github.com/Microsoft/vscode/issues/12054:但是,它可以通过添加以下行来keybindings.json,从而覆盖现有的快捷方式启用 –

回答

2

的综合终端窗口之间切换的行为不是在Default Keybindings默认启用。

{ "key": "ctrl+,",  "command": "workbench.action.terminal.focusNext" }, 
    { "key": "ctrl+.",  "command": "workbench.action.terminal.focusPrevious" } 
相关问题