Skip to content

Instantly share code, notes, and snippets.

@gw1108
Created December 14, 2017 01:47
Show Gist options
  • Select an option

  • Save gw1108/89d54a7083f2948a8453c4f134435ca1 to your computer and use it in GitHub Desktop.

Select an option

Save gw1108/89d54a7083f2948a8453c4f134435ca1 to your computer and use it in GitHub Desktop.
VSCode Keyboard Shortcuts
// 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"
}
]
@gw1108

gw1108 commented Dec 18, 2017

Copy link
Copy Markdown
Author

My personal VSCode settings for any project.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment