Xuanyi Zhou
Xuanyi Zhou
I've been working on [a text editor](https://github.com/lukedan/codepad) that handles raw binary data of arbitrary character encoding, and I'm trying to integrate tree-sitter into it for syntax highlighting. However, it seems...
For this expression: `(?|a(b)(c))\2`, `(b)` is the first captured group, while `(c)` is the second captured group. This expression would match `abcc`. However, the explanation given by regexr says that...
Currently the fragment generation code (as well as caret collection, whitespace collection, decoration collection, etc.) have grown to become very complex. There should be a fuzz test that generates random...