Custom Shortcuts In VSCode
November 20 2024

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"
  }
]