Skip to content

Instantly share code, notes, and snippets.

@airyboy
Created November 8, 2018 06:50
Show Gist options
  • Save airyboy/b211c5cb7c395069cbb427e1c06ed48d to your computer and use it in GitHub Desktop.
Save airyboy/b211c5cb7c395069cbb427e1c06ed48d to your computer and use it in GitHub Desktop.
entries to use alt+j, alt+k for intellisense in VSCode
{
"key": "alt+k",
"command": "selectNextSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus"
},
{
"key": "alt+j",
"command": "selectPrevSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment