Skip to content

Instantly share code, notes, and snippets.

@Kamilnaja
Last active March 20, 2019 17:53
Show Gist options
  • Save Kamilnaja/c45947452f04c00ef68b2fa3fca8938a to your computer and use it in GitHub Desktop.
Save Kamilnaja/c45947452f04c00ef68b2fa3fca8938a to your computer and use it in GitHub Desktop.
Keybindings for vscode for better workflow
// super awesome keybindings for proffesionals
[
// prevent quiting app when type
{
"key": "ctrl+q",
"command": "-workbench.action.quit"
},
// add new file when focused on sidebar
{
"key": "ctrl+n",
"command": "explorer.newFile",
"when": "explorerViewletFocus"
},
// remove this
{
"key": "ctrl+k s",
"command": "-workbench.action.files.saveWithoutFormatting"
},
//and save on ctrl+k s like always
{
"key": "ctrl+k s",
"command": "workbench.action.files.saveAll"
},
// ctrl + e opens recent files - important, when you are using plugin intellij keybindings.
{
"key": "ctrl+e",
"command": "workbench.action.quickOpen",
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment