A running list of my custom shortcuts in VSCode.
To access this json file, open the Command Palette (CMD+SHIFT+P
) and search for βOpen Keyboard Shortcuts (JSON)β. A keybindings.json
file should open.
[
{
"key": "shift+cmd+a",
"command": "extension.multiCommand.execute",
"args": {
"sequence": [
"workbench.scm.focus",
"list.focusFirst",
"list.select"
]
},
"when": "editorTextFocus"
},
{
"key": "ctrl+tab",
"command": "workbench.action.nextEditor"
},
{
"key": "ctrl+shift+tab",
"command": "workbench.action.previousEditor"
}
]