Remove Hover Tip Visual Studio Code

Martavis P. picture Martavis P. · Apr 24, 2016 · Viewed 7.5k times · Source

Small annoyance...

Does anyone know how to get rid of the tip that pops up on hover for CSS and JS? I couldn't find anything related in the settings file. See screenshot:

enter image description here

Answer

Lee Warnock picture Lee Warnock · Nov 30, 2016

I also struggled with this, and finally submitted an issue to the vscode repo.

Please try this:

  1. On the menu bar: File>Preferences>User Settings
  2. Add the following to your settings.json:

    "editor.hover.enabled": false
    
  3. Save your settings.json and your issue should be fixed.

Happy coding!