Skip to content

Instantly share code, notes, and snippets.

@canvaspixels
Last active February 24, 2020 17:39
Show Gist options
  • Save canvaspixels/61cea3f5e00497201fb301b2ef7a4ae4 to your computer and use it in GitHub Desktop.
Save canvaspixels/61cea3f5e00497201fb301b2ef7a4ae4 to your computer and use it in GitHub Desktop.
vscode keybindings
[
{
"key": "cmd+shift+h",
"command": "workbench.action.terminal.newWithCwd",
"args": {
"cwd": "${fileDirname}"
}
},
{
"key": "alt+t",
"command": "workbench.action.terminal.sendSequence",
"args": {"text": "cd '${fileDirname}'\u000D"}
},
{
"key": "ctrl+c",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "shift+alt+down",
"command": "-editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+alt+cmd+down",
"command": "workbench.action.terminal.resizePaneDown",
"when": "terminalFocus"
},
{
"key": "ctrl+cmd+down",
"command": "-workbench.action.terminal.resizePaneDown",
"when": "terminalFocus"
},
{
"key": "ctrl+cmd+down",
"command": "geeebe.duplicateText",
"when": "editorTextFocus"
},
{
"key": "cmd+d",
"command": "-geeebe.duplicateText",
"when": "editorTextFocus"
},
{
"key": "cmd+down",
"command": "editor.action.moveLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "alt+down",
"command": "-editor.action.moveLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "cmd+up",
"command": "editor.action.moveLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "alt+up",
"command": "-editor.action.moveLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+d",
"command": "-deleteRight",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "ctrl+d",
"command": "editor.action.deleteLines",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "shift+cmd+k",
"command": "-editor.action.deleteLines",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "cmd+k cmd+l",
"command": "editor.action.transformToLowercase"
},
{
"key": "cmd+k cmd+u",
"command": "editor.action.transformToUppercase"
},
{
"key": "cmd+k cmd+t",
"command": "editor.action.transformToTitlecase"
},
{
"key": "ctrl+shift+w",
"command": "extension.htmlTagWrap",
"when": "editorTextFocus"
},
{
"key": "alt+w",
"command": "-extension.htmlTagWrap",
"when": "editorTextFocus"
},
{
"key": "shift+cmd+r",
"command": "workbench.files.action.showActiveFileInExplorer"
},
{
"key": "alt+cmd+2",
"command": "workbench.action.splitEditorRight"
},
{
"key": "alt+cmd+u",
"command": "extension.ftpsyncuploadselected"
},
{
"key": "shift+alt+cmd+d",
"command": "editor.action.selectHighlights",
"when": "editorFocus"
},
{
"key": "shift+cmd+l",
"command": "-editor.action.selectHighlights",
"when": "editorFocus"
},
{
"key": "shift+cmd+l",
"command": "editor.action.insertCursorAtEndOfEachLineSelected",
"when": "editorTextFocus"
},
{
"key": "shift+alt+i",
"command": "-editor.action.insertCursorAtEndOfEachLineSelected",
"when": "editorTextFocus"
},
{
"key": "shift+alt+cmd+f",
"command": "workbench.action.replaceInFiles"
},
{
"key": "shift+cmd+h",
"command": "-workbench.action.replaceInFiles"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment