Reputation: 507
sometimes I want to hide the intellisense panel. I can do it with a click, but is there a way to do it with the keyboard?
Upvotes: 7
Views: 2327
Reputation: 65223
ctrlspace toggles the intellisense in the suggest widget. This is bound to the toggleSuggestionDetails
command.
To dismiss the the suggest widget itself, press esc which is bound to the hideSuggestWidget
command.
You can customize these shortcuts with keybindings
Upvotes: 10