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
}