Skip to content

Instantly share code, notes, and snippets.

@zevolution
Created July 19, 2020 14:36
Show Gist options
  • Save zevolution/d1c359fe18d90f9b6c0083090f161c47 to your computer and use it in GitHub Desktop.
Save zevolution/d1c359fe18d90f9b6c0083090f161c47 to your computer and use it in GitHub Desktop.
VSCode Shortcuts
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+shift+down",
"command": "-editor.action.insertCursorBelow",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+up",
"command": "-editor.action.insertCursorAbove",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+down",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+alt+down",
"command": "-editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+up",
"command": "editor.action.copyLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+alt+up",
"command": "-editor.action.copyLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+alt+n",
"command": "explorer.newFolder"
},
{
"key": "ctrl+alt+n",
"command": "explorer.newFile"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment