LotusXvr
LotusXvr

Reputation: 81

Deactivate highlighting of special characters in VSCode

Highlighted special characters

The more i try to dig in the VSCode settings, i cant seem to find out how do deactivate that, and I'm wondering if someone knows. Thanks in advance

I navigated through the whole settings things of VSCode including the json and found nothing

Upvotes: 8

Views: 6297

Answers (1)

mmh4all
mmh4all

Reputation: 1761

Go to settings and search for Unicode Highlight and set it to false

Or add this line to your settings.json file:

"editor.unicodeHighlight.includeStrings": false,

which essentially does the same thing.

Upvotes: 11

Related Questions