TalentedTinatin
TalentedTinatin

Reputation: 17

Is there a way to remove suggestions in Visual Studio Code?

I am doing some mobile app development using React JS. When I try to add styling to the app a rather annoying block follows my text cursor.

Is there a way to remove this in the VS settings or in my code some way?

enter image description here

Upvotes: 0

Views: 1769

Answers (1)

You can achieve what you want by disabling parameter hints, you can turn them off by going into the Settings menu, searching for editor.parameterHints.enabled, and un-checking the box.

Or put the following entry in your settings.json:

"editor.parameterHints.enabled": false

If you ever want to see the parameter hints on-demand, refer to How to trigger parameter hints in Visual Studio Code?. In short, for Windows/Linux, Ctrl+Shift+Space; for Mac, Cmd+Shift+Space.

Upvotes: 5

Related Questions