Skip to content

Instantly share code, notes, and snippets.

@alinademi
Forked from airyboy/keybindings.json
Last active December 15, 2022 23:25
Show Gist options
  • Save alinademi/1e7661b97ddfc3e027f4f5baac280394 to your computer and use it in GitHub Desktop.
Save alinademi/1e7661b97ddfc3e027f4f5baac280394 to your computer and use it in GitHub Desktop.
Use vim like keybindings ctrl+shift+j, ctrl+shift+k, ctrl+shift+l for intellisense (suggestion menu) in VSCode
{
"key": "ctrl+shift+j",
"command": "selectNextSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus"
},
{
"key": "ctrl+shift+k",
"command": "selectPrevSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus"
}
{
"key": "ctrl+shift+l",
"command": "acceptSelectedSuggestion",
"when": "suggestWidgetVisible && textInputFocus"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment