How to disable selector specificity in VSCode?

Viewed 507

I am working on the SCSS file and when I hover on any CSS selector "selector specificity" is showing, which is annoying for me when I have to move the mouse. Is there any setting to disable this feature?

2 Answers

I don't think it is possible to remove that Selector Specificity line. I looked through open and closed github issues and found nothing. And there doesn't seem to be any relevant setting.

Here is the original issue where the feature was added: [CSS] Add specificity to hover and there is no mention of a setting to enable/disable. Same with the actual implementing commit.

I have found the solution. In the settings search hover. Then disable "Editor>Hover:Enabled".

Related