Featured Shortcuts

VSCode Navigation

Command
Result

Cmd-Shift-P

Command Palette

Cmd-P

Open a File

Cmd-T

Find class, ft, or variable

Cmd-Shift-E

Explorer Open

Cmd-K Cmd-W

Close all open files

Cmd-B

Toggle SidePanel

Shift-Alt-O

Delete Unused Imports

Editor Navigation

Cmd
Result

Cmd-L

Select Current Line

Cmd-Shift-K

Delete Current Line

Packages

Install Shell

Open the Command Palette (⇧⌘P) and type 'shell command'

Snippets

Use them Cmd-Shift-P snippets to configure something like below:

  • $1, $2 to specify cursor locations. The number is the order in which tabstops will be visited, whereas $0

  • also has variables like time, date, filename, etc

  • Can transform variables like ${1/(^.)/${1:/upcase}/ to uppercase first letter so capture then specific what to do to it

Code to Snippets Script

Last updated