Stephan Seitz
Stephan Seitz
But also conceal just needs the on/off choice and it's rather a different module that you can turn off/on Highlights can already be deactivated by remapping the capture or remapping...
We can give every conceal a level and name. Then you can refer to it in a similar way as to the highlight. `(conceal! 2 "quotes")` the highlight modules could...
Wouldn't a `revision` field that takes precedence over the lockfile be sufficient? This would just be a two word change. You can also make such parsers then always out-dated as...
> EDIT: Checked and it isn't needed. We'll I'm not strictly for either of those variants, it just feels a bit arbitrary that it would switch just in this situation...
We would need to add some logic to disambiguate the injection. Easiest would be to just switch to the other alternative language once the first yields errors. It's challenging to...
You're editing source code in the markdown. We know that language injections are not implemented in the most efficient way (no incremental parsing). Can you identify whether the markdown parser...
@medwatt the markdown parser can be used also from other editors do you have the time to check whether `helix` or the tree-sitter web playground have the same problem. I...
This is what happens when you press down a key with high repetition rate in a markdown file  as you can see the compute time seems to be indeed...
The verilog parser is **very** complex, it takes long to generate and the resulting parser is enormous. I would not be surprised when it's slow to parse. E.g. Lua stays...
I had a long time the plan to use tree-sitter's timeout feature for parsing to guarantee that we don't stay in the parse+query cycle to long (and maybe do off-thread...