Reputation: 17
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?
Upvotes: 0
Views: 1769
Reputation: 710
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