Skip to content

Instantly share code, notes, and snippets.

@mrioqueiroz
Created February 15, 2021 19:06
Show Gist options
  • Save mrioqueiroz/9073ede5d67a60a35faab31b5e42e978 to your computer and use it in GitHub Desktop.
Save mrioqueiroz/9073ede5d67a60a35faab31b5e42e978 to your computer and use it in GitHub Desktop.
VSCode Keybindings
[
{ "key": "f6", "command": "workbench.action.terminal.focus"},
{
"key": "f6",
"command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus"
},
{
"key": "ctrl+alt+b",
"command": "markdown.extension.editing.toggleBold",
"when": "editorTextFocus && !editorReadonly && editorLangId == 'markdown'"
},
{
"key": "ctrl+b",
"command": "-markdown.extension.editing.toggleBold",
"when": "editorTextFocus && !editorReadonly && editorLangId == 'markdown'"
},
{
"key": "shift+enter",
"command": "extension.jumpy-word",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+enter",
"command": "extension.jumpy-line",
"when": "editorTextFocus"
},
{
"key": "Escape",
"command": "extension.jumpy-exit",
"when": "editorTextFocus && jumpy.isJumpyMode"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment