Created
December 14, 2017 01:47
-
-
Save gw1108/89d54a7083f2948a8453c4f134435ca1 to your computer and use it in GitHub Desktop.
VSCode Keyboard Shortcuts
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 overwrite the defaults | |
| // Need to Edit.LineUp in intellisense without using arrow keys? Want to navigate intellisense in VSCode without arrow keys? | |
| // Add this to keybindings.json | |
| [ | |
| { | |
| "key": "ctrl+shift+s", | |
| "command": "workbench.action.files.saveAll" | |
| }, | |
| { | |
| "key": "ctrl+k s", | |
| "command": "-workbench.action.files.saveAll" | |
| }, | |
| { | |
| "key": "alt+k", | |
| "command": "selectPrevSuggestion", | |
| "when": "editorTextFocus && suggestWidgetMultipleSuggestions && suggestWidgetVisible" | |
| }, | |
| { | |
| "key": "alt+j", | |
| "command": "selectNextSuggestion", | |
| "when": "editorTextFocus && suggestWidgetMultipleSuggestions && suggestWidgetVisible" | |
| }, | |
| { | |
| "key": "ctrl+q", | |
| "command": "-workbench.action.quickOpenView" | |
| } | |
| ] |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
My personal VSCode settings for any project.