Emilios1995
Emilios1995

Reputation: 507

Is there a keyboard shortcut to dismiss the intellisense panel (vscode)?

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

Answers (1)

Matt Bierner
Matt Bierner

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

Related Questions