How use prev syntax highlighting for vscode

Viewed 679

I updated the vscode to v1_43.

It's too bad to highlight the new syntax.

How to use v1_42 syntax highlighting in v1_43.

prev

enter image description here

new

enter image description here

1 Answers

This is semantic highlighting. Semantic highlights are based on the type of the values, for example globals can be colored differently than local variables.

To disable it, just set:

editor.semanticHighlighting.enabled: false

Try leaving it on however. Semantic highlighting provides useful information and once you get used to it, the old highlighting will instead look wrong

Related