Visual Studio Code

Visual shortcuts

  • cmd + B Toogle side bar
  • cmd + alt + right/left arrow Next/previous editor
  • cmd + number Change editor group
  • cmd + ctrl + right/left arrow Split or move file to group
  • cmd + shift + o Go to symbol in file
  • cmd + alt + k Toggle bookmark (extension)
  • cmd + alt + l/j Next/previous bookmark (extension)

Others

Add types to variables on javascript files:

/** @type {HTMLLinkElement | null} */
const myLink = document.querySelector('#the-link')

Define folder regions:

// #region regionName

// Some code here

// #endregion