Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make VSCode Intellisense window wider

I have a VSCode extension that helps me autocomplete file paths, however many file paths grow long and are truncated in the VSCode intellisense popover window.

How can I set VSCode to either:

  • have a fixed width that I can set to be large
  • automatically expand to fit the intellisense options (preferable)

I happen to have written the extension so if needed I can update it if that is required.

like image 506
empire29 Avatar asked Jul 12 '19 16:07

empire29


Video Answer


1 Answers

Another way around this is to press Ctrl + Space (or what ever your "Trigger suggestion" shortcut is) while the suggestion popover is open to show more detail about current selection.

So this (where I can't differentiate between the Trans imported from @lingui/macro and the one from @lingui/react):

small suggestion popup

Becomes this:

larger suggestion popup

like image 111
Iwazaru Avatar answered Sep 20 '22 08:09

Iwazaru