如何使用键盘快捷键在 Visual Studio 代码中切换终端?

jam*_*iet 7 visual-studio-code

我希望能够使用键盘快捷键在 VSCode 中的终端窗格之间切换。我在 Mac 上。

我打开了键盘快捷键(Commandkey+K、Commandkey+S)并找到了workbench.action.terminal.focusNextPane设置:
在此输入图像描述

它非常清楚地说明了键盘快捷键应该是什么(选项+命令+向下箭头或选项+命令+向左箭头),但这些都不起作用。当焦点位于编辑器中并且我想在其中的窗格之间切换时,它们确实可以工作,但当焦点位于终端时,它们不起作用。

不知道我做错了什么,但我希望我错过了一些明显的事情。谁能解释一下吗?

Mar*_*ark 5

The commands you are looking at (Terminal: Focus Next Pane and Terminal: Focus Previous Pane) are to switch between split terminal panes.

The commands to switch between terminals are:

Terminal: Focus Next Terminal
  workbench.action.terminal.focusNext

Terminal: Focus Previous Terminal
  workbench.action.terminal.focusPrevious
Run Code Online (Sandbox Code Playgroud)

both of which are unbound by default.