I would like to be able to switch between terminal panes in VSCode using a keyboard shortcut. I am on a Mac.
I have opened keyboard shortcuts (Commandkey+K, Commandkey+S) and found the workbench.action.terminal.focusNextPane setting:

where it states quite clearly what the keyboard shortcut should be (option+command+downarrow or option+command+leftarrow) but neither of those work. They DO work when focus is in the editor and I want to switch between panes there, but not working when the focus in the terminal.
Not sure what I'm doing wrong but I hope I'm missing something obvious. Can anyone explain?
workbench.action.terminal.focusNextand is not bound to a keybinding by default.workbench.action.terminal.focusNextwas the correct one and I followed the suggested keybinding here: github.com/microsoft/vscode/issues/37937#issuecomment-343231679, making sure to set the when expression toterminalFocus. If you write your comment as an answer I shall accept it as such. thank you.