Max Brunsfeld
Max Brunsfeld
The change is due to us enabling the new Tree-sitter parsing system by default. Sorry for the disruption, everyone. Just curious - why do folks want to use language-babel rather...
:+1: I see, thanks. In case it matters to anyone, the built-in parsers now handle JSX and Flow. They do not yet handle graphql and styled components, although styled-component highlighting...
I edited the code snippet in my above comment ☝️ to fix an error.
Built-in styled-component highlighting has shipped in Atom 1.32.1. If you are interested, please give the built-in parsing system a try and report any issues you see with highlighting embedded CSS....
@dominic-p It looks like you're using 1.32.0; a few highlighting issues have been fixed in 1.32.1, which we published last night. * Component names in JSX (e.g. `MessageAttachment`) should now...
It sounds like many people following this issue are actually interested in key bindings for _sequences_ like `k j` correctly inserting characters on partial match failures. Seems like this got...
This is a tricky one. With a braced initializer, we can tell that `ClassA` is a class name. But with parenthesis initialization, we can't tell that it's a class as...
Minimal repro: ```c int a(b) float b; { } ```
When you need to parse a fragment of incomplete source code (like a `type_descriptor`), can you just surround the fragment with a "context" that turns it into a valid C...
Thanks for the report.