Created
February 15, 2021 19:06
-
-
Save mrioqueiroz/9073ede5d67a60a35faab31b5e42e978 to your computer and use it in GitHub Desktop.
VSCode Keybindings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ "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