VSCode allows to have multiple terminal tabs, but manually switching between them using drop down is an hectic task. so thought to have a keyboard shortcut that allows me to switch between them.
Edited the keyboard shortcut and assigned the following keys which has made my life much easier.
[
{ "key": "cmd+shift+]", "command": "workbench.action.terminal.focusNext" },
{ "key": "cmd+shift+[", "command": "workbench.action.terminal.focusPrevious" },
]
Switching between Terminals in VSCode.