You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The syntax highlighter should be highlighting Node within the templates as a type. If there is a setting I am missing, please advise, but I think this might be a bug within the Language Service.
Describe the bug
OS and Version: Windows 10
VS Code Version: 1.27.2
C/C++ Extension Version: 0.19.0
The text was updated successfully, but these errors were encountered:
This is a problem with the TextMate language grammar which it looks like the Atom folks will no longer be updating. This will have to be addressed with either #230, or microsoft/vscode#50140.
I've developed and published syntax highlighting extension based on Tree-Sitter. It provides universal syntax coloring engine for almost any programming language (currently, C and C++ are supported OOTB).
Constructing entire syntax tree, Tree-sitter efficiently overcomes all limitations of built-in TextMate grammars. Being context-aware, it's able to parse complex language structures providing complete coverage of source code.
I've been using it by myself for a month, so I suppose it's ready for public use.
Type: LanguageService
The syntax highlighter does not seem to pick up on types declared by the typename keyword. For example, the code:
produces this highlighting:
The syntax highlighter should be highlighting Node within the templates as a type. If there is a setting I am missing, please advise, but I think this might be a bug within the Language Service.
Describe the bug
The text was updated successfully, but these errors were encountered: