Home > database >  How to enable vscode editor.hover only for specific lanauge?
How to enable vscode editor.hover only for specific lanauge?

Time:11-04

I don't want to enable all the times, it's sometimes annoying.

CodePudding user response:

First disable the hover for all languages and then enable it for specific languages, in your settings.json like this:

  "editor.hover.enabled": false,

  "[scss]": {
    "editor.hover.enabled": true
  }

You can put multiple languages in the specific setting like:

  "[scss, css]": {
    "editor.hover.enabled": true
  }
  • Related