myst-vs-code icon indicating copy to clipboard operation
myst-vs-code copied to clipboard

Look into semantic highlighting

Open chrisjsewell opened this issue 4 years ago • 1 comments

VS Code just introduced this feature, which may be if use?

What is the difference between syntax and semantic highlighting?

Syntax highlighting colors the text based on lexical rules. In VS Code the lexical rules are expressed as regular expressions contained in a TextMate grammar.

Semantic highlighting enriches the syntax coloring based on symbol information from a language service that has the full understanding of the project. Based on this understanding each identifier gets colored & styled with the color of the symbol it resolves to. A constant variable name is rendered as constant throughout the file, not just in its declaration. Same for parameter names, property names, class names and so on.

  • https://github.com/microsoft/vscode/wiki/Semantic-Highlighting-Overview
  • https://github.com/microsoft/vscode-extension-samples/tree/master/semantic-tokens-sample

chrisjsewell avatar Mar 20 '20 14:03 chrisjsewell

whoah that sounds very cool. The only downside I'd see here is that some pages might end up looking like a rainbow vomited all over the page :-)

choldgraf avatar Mar 20 '20 15:03 choldgraf