Marina Dunst
Marina Dunst

Reputation: 870

VS Code disables highlighting occurrences but also disables highlighting matching tags

I want to disable highlighting occurrences but preserve highlighting matching tags. At the moment when I set occurrencesHighlight: false it stops highlighting occurrences but at the same time stops highlighting opening and closing tags.

enter image description here

Upvotes: 0

Views: 123

Answers (1)

Alex
Alex

Reputation: 67473

Language specific settings

"editor.occurrencesHighlight": false,
"[html]": {
    "editor.occurrencesHighlight": true
}

Upvotes: 2

Related Questions