π₯ - you should never forget this one
See all open files CTRL + p
Show command palette CMD + p
Show suggestions (intellisense style) CTRL + SPACE either on a new line or by highlighting a word
Select whole line CMD + i
Move all highlighted up or down ALT + ARROW UP/DOWN
Open integrated terminal CTRL + `
Focus terminal CMD + Β§π₯
Focus tab number 1 CMD + 1
Show Project Explorer CMD + SHIFT + E
Go to line CTRL + g or (VIM style) ESC + :
Go to Symbol π₯
CMD + SHIFT + o
Add a : and group them by type
Go to Symbol within workspace π₯ CMD + t
Go to previous cursor location π₯ Ctrl + -
List recent files within the tab π₯ CTRL + SHIFT
Delete the char under the cursor x
Back to start of line 0
Back to start of line and insert mode I
To end of line and enter edit mode A
Back to start of file gg
Back to end of file G
Find matching parens %
substitute 'new' for 'old' where g is globally :s/old/new/g
jump to definition of method π₯ gd
jump to another tab (see more here) CTRL+ww
delete from cursor until (till) X character π₯ dtX To expand this combination (to prev and exclusive/inclusive see https://askubuntu.com/a/781012/289123)
delete or change a block inside (surrounded by) a character. π₯
For example to delete everything inside parens (THIS WILL BE REMOVED) => ()
di( or
ci(
See https://leanpub.com/boostyourcodingfuwithvscodeandvim/read#leanpub-auto-editing-like-magic-with-vim-operators for more
Focus breadcrumbs CMD + SHIFT + .
Navigate breadcrumbs ALT + LEFT ARROW AND ALT + RIGHT ARROW
-
Focus next result in search ALT+u
-
Focus prev result in search SHIFTALT+u