How use prev syntax highlighting for vscode

后端 未结 1 926
遥遥无期
遥遥无期 2020-12-07 04:25

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

相关标签:
1条回答
  • 2020-12-07 05:00

    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

    0 讨论(0)
提交回复
热议问题