Skip to content

Instantly share code, notes, and snippets.

@elfenlaid
Created February 11, 2019 10:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elfenlaid/94f772621248b718585e01d1bab6d143 to your computer and use it in GitHub Desktop.
Save elfenlaid/94f772621248b718585e01d1bab6d143 to your computer and use it in GitHub Desktop.
// Place your key bindings in this file to overwrite the defaults
[{
"key": "shift+ctrl+p",
"command": "cursorUpSelect",
"when": "editorTextFocus"
},
{
"key": "shift+ctrl+f",
"command": "cursorRightSelect",
"when": "editorTextFocus"
},
{
"key": "shift+ctrl+b",
"command": "cursorLeftSelect",
"when": "editorTextFocus"
},
{
"key": "shift+ctrl+n",
"command": "cursorDownSelect",
"when": "editorTextFocus"
},
{
"key": "shift+ctrl+e",
"command": "cursorEndSelect",
"when": "editorTextFocus"
},
{
"key": "shift+ctrl+a",
"command": "cursorHomeSelect",
"when": "editorTextFocus"
},
{
"key": "alt+f",
"command": "cursorWordEndRight",
"when": "editorTextFocus"
},
{
"key": "shift+alt+f",
"command": "cursorWordEndRightSelect",
"when": "editorTextFocus"
},
{
"key": "alt+b",
"command": "cursorWordStartLeft",
"when": "editorTextFocus"
},
{
"key": "shift+alt+b",
"command": "cursorWordStartLeftSelect",
"when": "editorTextFocus"
},
{
"key": "alt+cmd+b",
"command": "editor.action.goToImplementation",
"when": "editorHasImplementationProvider && editorTextFocus && !isInEmbeddedEditor"
},
{
"key": "ctrl+[",
"command": "workbench.action.navigateBack"
},
{
"key": "ctrl+]",
"command": "workbench.action.navigateForward"
},
{
"key": "shift+f6",
"command": "editor.action.changeAll",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+w",
"command": "editor.action.smartSelect.grow",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+w",
"command": "editor.action.smartSelect.shrink",
"when": "editorTextFocus"
},
{
"key": "ctrl+alt+w",
"command": "editor.emmet.action.wrapWithAbbreviation"
},
{
"key": "shift+cmd+t",
"command": "workbench.action.tasks.test"
},
{
"key": "enter",
"command": "acceptSelectedSuggestion",
"when": "editorTextFocus && suggestWidgetVisible"
},
{
"key": "cmd+shift+t",
"command": "workbench.action.tasks.runTask",
"args": "mix test"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment