2017-08-01 127 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" } 
相關問題