Visual Studio Code有一个热键组合来将当前窗口分割为2或3个窗格:
"key": "ctrl + \", "command": "workbench.action.splitEditor"
不幸的是,我无法在没有鼠标的情况下在这些窗格之间切换。我以前用F6的习惯也不管用了。
Visual Studio代码编辑器是否支持它?
Visual Studio Code有一个热键组合来将当前窗口分割为2或3个窗格:
"key": "ctrl + \", "command": "workbench.action.splitEditor"
不幸的是,我无法在没有鼠标的情况下在这些窗格之间切换。我以前用F6的习惯也不管用了。
Visual Studio代码编辑器是否支持它?
当前回答
尝试Option+Tab按顺序切换,Cmd+按数字切换,shift+ Cmd+[(或])在跨编辑器的制表符之间切换
其他回答
Alt+←和Alt+→在Windows上可以开箱即用。它只会在分屏窗格之间切换,不会重新激活窗格内的非活动文件。
另一种方法是使用Ctrl + PageUp/PageDow在窗格之间切换。
我最近发现了这个键绑定,它可以在组中的分裂窗格之间切换焦点。
"workbench.action.focusOtherSideEditor"
你要找的是workbench.action.terminal.focusNextPane:
{
"key": "alt+down",
"command": "workbench.action.terminal.focusNextPane",
"when": "terminalFocus"
},
{
"key": "alt+right",
"command": "workbench.action.terminal.focusNextPane",
"when": "terminalFocus"
},
在Mac:
Move Editor Left ⌘K← workbench.action.moveEditorLeftInGroup
Move Editor Right ⌘K→ workbench.action.moveEditorRightInGroup