shortcut terminal vs code code example
Example 1: vs code open file shortcut
To open a file:
1. press ctrl + p
2. enter filename
3. To go to line append ":10"
4. To go to function append "@foo"
Example 2: shortcut key for switch between editor and terminal vs code
{
"key": "ctrl+j",
"command": "workbench.action.focusActiveEditorGroup",
"when": "!terminalFocus"
},
{
"key": "ctrl+k",
"command": "workbench.action.terminal.focus",
"when": "terminalFocus"
}