Skip to content

Instantly share code, notes, and snippets.

@kndo
Last active April 10, 2019 23:46
Show Gist options
  • Save kndo/868d4731d0990f77de2c524a04f3f25a to your computer and use it in GitHub Desktop.
Save kndo/868d4731d0990f77de2c524a04f3f25a to your computer and use it in GitHub Desktop.
use <Tab> to toggle auto-complete suggestions in VSCode
[
{
"key": "tab",
"command": "selectNextSuggestion",
"when": "editorTextFocus && suggestWidgetMultipleSuggestions && suggestWidgetVisible"
},
{
"key": "shift+tab",
"command": "selectPrevSuggestion",
"when": "editorTextFocus && suggestWidgetMultipleSuggestions && suggestWidgetVisible"
},
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment