Memos

Don't mind me! Just putting some stuff here so I don't forget. I know if I put these in a file in my computer, it'll get buried lol. If you find these useful, feel free to use them!


The following JSON code is a list of keyboard shortcuts that can be used in Visual Studio Code. Many, if not all, make use of Emmet abbreviations.
// Place your key bindings in this file to override the defaultsauto[]
[
  {
    "key": "ctrl+k ctrl+m",
    "command": "workbench.files.action.collapseExplorerFolders"
  },
  {
    "key": "ctrl+alt+up",
    "command": "editor.emmet.action.incrementNumberByOne",
    "when": "editorTextFocus"
  },
  {
    "key": "ctrl+alt+down",
    "command": "editor.emmet.action.decrementNumberByOne",
    "when": "editorTextFocus"
  },
  {
    "key": "ctrl+up",
    "command": "editor.emmet.action.incrementNumberByOneTenth",
    "when": "editorTextFocus"
  },
  {
    "key": "ctrl+down",
    "command": "editor.emmet.action.decrementNumberByOneTenth",
    "when": "editorTextFocus"
  },
  {
    "key": "shift+down",
    "command": "editor.emmet.action.decrementNumberByTen",
    "when": "editorTextFocus"
  },
  {
    "key": "shift+up",
    "command": "editor.emmet.action.incrementNumberByTen",
    "when": "editorTextFocus"
  },
  {
    "key": "ctrl+shift+m",
    "command": "-workbench.actions.view.problems",
    "when": "workbench.panel.markers.view.active"
  },
  {
    "key": "ctrl+shift+m",
    "command": "editor.emmet.action.mergeLines"
  },
  {
    "key": "ctrl+m ctrl+i",
    "command": "editor.emmet.action.balanceIn"
  },
  {
    "key": "ctrl+m ctrl+o",
    "command": "editor.emmet.action.balanceOut"
  },
  {
    "key": "ctrl+m ctrl+m",
    "command": "editor.emmet.action.matchTag"
  },
  {
    "key": "ctrl+m ctrl+/",
    "command": "editor.emmet.action.toggleComment"
  },
  {
    "key": "ctrl+m ctrl+w",
    "command": "editor.emmet.action.wrapWithAbbreviation"
  },
  {
    "key": "ctrl+m ctrl+backspace",
    "command": "editor.emmet.action.removeTag"
  },
  {
    "key": "ctrl+m ctrl+k",
    "command": "editor.emmet.action.nextEditPoint"
  },
  {
    "key": "ctrl+m ctrl+j",
    "command": "editor.emmet.action.prevEditPoint"
  },
  {
    "key": "ctrl+m ctrl+.",
    "command": "editor.emmet.action.selectNextItem"
  },
  {
    "key": "ctrl+m ctrl+,",
    "command": "editor.emmet.action.selectPrevItem"
  },
  {
    "key": "ctrl+m ctrl+u",
    "command": "editor.emmet.action.updateImageSize"
  },
  {
    "key": "ctrl+m ctrl+c",
    "command": "workbench.action.showEmmetCommands"
  }
]
Go back