-
Notifications
You must be signed in to change notification settings - Fork 29.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
keyboard shortcuts to choose an intellisense suggestion? #24918
Comments
Nice suggestion, we can enhance it by adding |
I tried two approaches:
However, some of the team feel it's easier to just type out the suggestion and filter the items & don't think we should add such functionality. |
Is the source code for this feature still available? |
When popping up a list of smart tips, I often use I use {
"key": "tab",
"command": "selectNextSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus"
},
{
"key": "shift+tab",
"command": "selectPrevSuggestion",
"when": "suggestWidgetMultipleSuggestions && suggestWidgetVisible && textInputFocus"
},
{
"key": "ctrl+tab",
"command": "acceptSelectedSuggestion",
"when": "acceptSuggestionOnEnter && suggestWidgetVisible && suggestionMakesTextEdit && textInputFocus"
} |
I made the following keybindings to my keybindings.js. Maybe I should make this into an extension.
|
Was abit surprised that the intellisense suggestions weren't keyed with a number or something where the user could say
Ctrl+5
and choose the fifth suggestion - has this been considered?The text was updated successfully, but these errors were encountered: