I can seem to get rid of the helper text. Where is that setting? I dont want to see the helper window with the ajax stuff.
Asked
Active
Viewed 120 times
2
-
Possible duplicate of [Disable tooltip hint in Visual Studio Code](https://stackoverflow.com/questions/41115285/disable-tooltip-hint-in-visual-studio-code) – Gama11 Apr 04 '19 at 20:39
1 Answers
3
On the menu bar: File>Preferences>User Settings Add the following to your settings.json:
"editor.hover": false

Jay Mason
- 446
- 3
- 17
-
You are a lifesaver...What about the dropdown of possible variables to autocomplete? if i type $va I get a hover if all variables that might match va – bart2puck Dec 11 '18 at 17:48
-
Turn off intellisense - Menu: Tools -> Options -> Text Editor -> All Languages [or specific language] -> General -> Statement completion – Jay Mason Dec 12 '18 at 13:56