Saves all currently open files
ctrl+ksSaves your current file, without running your formatter
ctrl+kctrl+shift+sCloses all currently open files
ctrl+kwOpens your current file in a new VSCode window
ctrl+koToggles comment on the selected line or lines
ctrl+/Selects the current line that your cursor is on
ctrl+lFolds all code blocks in current file
ctrl+kctrl+0UnFolds all code blocks in current file
ctrl+kctrl+jOpens UI to search for file in workspace
ctrl+eIndents the current line
ctrl+]Un-Indents the current line
ctrl+[Goes to the next error or warning in the current file
f8Inserts a blank line above the current line, and moves your cursor to it
ctrl+shift+enterOpens UI to search for symbol in current file, and moves your cursor to it
ctrl+shift+oWill undo the last cursor movement
ctrl+uIf the current file is markdown, opens a preview of it to the side
ctrl+kvCopies the full path of the current file to your clipboard
ctrl+kpAllows you to set the editor language for the current file
ctrl+kmRemoves all trailing whitespace from the current file
ctrl+kctrl+xWhatever word you have selected, all occurrences will be selected allowing you to replace them
ctrl+f2Will hide or show the sidebar
ctrl+bIf you have a word selected, this will find and select the next instances of it in the same file.
ctrl+dOpens breadcrumbs UI, allowing you to use arrow keys to navigate paths, and code blocks.
ctrl+shift+.Opens a UI allowing you to search your available snippets.
ctrl+alt+rToggles VSCode in Zen Mode, which will hide most of the UI, and only show the editor.
ctrl+kzOpens and selects the explorer, allowing you to navigate and open files. (works while in Zen Mode)
ctrl+shift+eOpens and selects the source control, allowing you to manage your repo. (works while in Zen Mode)
ctrl+shift+gOpens the find in files UI, allowing you to search for a string or regex in all files.
ctrl+shift+fOpens the find in file UI, allowing you to search for a string or regex in the current file.
ctrl+fToggles the terminal and debug console. If already open it will focus it. (works while in Zen Mode)
ctrl+`Selects the next console. Only works when console is focused
ctrl+PAGE DOWNSelects the previous console. Only works when console is focused
ctrl+PAGE UPOpens the open file selector, allowing you to tab to an already open file.
ctrl+tabMoves the current line up, if it is not the first line in the file.
alt+upMoves the current line down, if it is not the last line in the file.
alt+downDuplicates the current line up.
alt+shift+upDuplicates the current line down.
alt+shift+down