Created
October 17, 2019 14:45
-
-
Save AlskaPark/25ebe72e308a04d34a6e72aea8c3fcaa to your computer and use it in GitHub Desktop.
vscode keybindings.json
This file contains hidden or 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
| // Place your key bindings in this file to override the defaultsauto[] | |
| [ | |
| { | |
| "key": "ctrl+m", | |
| "command": "-editor.action.toggleTabFocusMode" | |
| }, | |
| { | |
| "key": "alt+oem_period", | |
| "command": "editor.action.revealDefinition" | |
| }, | |
| { | |
| "key": "alt+oem_comma", | |
| "command": "workbench.action.navigateBack" | |
| }, | |
| { | |
| "key": "ctrl+q", | |
| "command": "editor.action.showHover", | |
| "when": "editorTextFocus" | |
| }, | |
| { | |
| "key": "ctrl+x ctrl-e", | |
| "command": "code-runner.run" | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment