Skip to content

Instantly share code, notes, and snippets.

@cecilemuller
Last active May 4, 2017 22:50
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cecilemuller/333727f35daf5c8f9d949a2c00c81db8 to your computer and use it in GitHub Desktop.
Save cecilemuller/333727f35daf5c8f9d949a2c00c81db8 to your computer and use it in GitHub Desktop.
My Visual Studio Code key bindings
[
{
"key": "ctrl+shift+d",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+up",
"command": "editor.action.moveLinesUpAction",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+down",
"command": "editor.action.moveLinesDownAction",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+c",
"command": "editor.action.commentLine",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+8",
"command": "workbench.action.toggleEditorGroupLayout"
},
{
"key": "ctrl+shift+b",
"command": "workbench.action.toggleSidebarVisibility"
},
{
"key": "ctrl+b",
"command": "editor.action.insertSnippet",
"when": "resourceLangId == 'markdown'",
"args": {
"name": "Insert bold text"
}
},
{
"key": "ctrl+i",
"command": "editor.action.insertSnippet",
"when": "resourceLangId == 'markdown'",
"args": {
"name": "Insert italic text"
}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment