oswi88
oswi88

Reputation: 13

VSCode: Hide PowerShell method signature box

In the VSCode PowerShell extension I'd like to hide the box displaying the method signatures, see Screenshot.

Is this possible at all? If so, what's the name of the setting?

Otherwise, is it possible to move it out of the way? I often find myself trying to look at some code a line or two above only to be blocked by that window popping up.

Upvotes: 1

Views: 195

Answers (1)

restless1987
restless1987

Reputation: 1598

You're looking for Intellisense

You can configure it in the settings (ctrl + P: Type settings). I think, adjusting the "editor.quickSuggestionsDelay" should do.

"editor.parameterHints" looks good, too

Upvotes: 1

Related Questions