-
-
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
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
{ | |
"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