Felipe Micali
Felipe Micali

Reputation: 847

Atom v1.32 stopped detecting matching tags and JavaScript syntax highlighting

After v1.32.0 update, atom just stopped detecting matching html tags, and javascript/typescript color scheme changed (variables, functions, classes, object keys, etc...).

Is it possible to reactivate matching html tags highlighting and use the previous javascript color scheme that I was used to already?

Thanks!

Upvotes: 3

Views: 481

Answers (1)

idleberg
idleberg

Reputation: 12882

As mentioned in the release notes, Atom v1.32 enabled the new tree-sitter parser. Try enabling/disabling it to see whether that restores the old behaviour:

enter image description here

Screenshot: Toggle Tree Sitter Parsers in the Atom Core Settings

Update:

Atom v1.32.1 fixes several issues related to syntax highlighting. Since Tree Sitter is now the default highlighter, you should probably keep using it, unless the old highlighters serve you better.

Upvotes: 9

Related Questions