Colonial-Dev / inkjet

A batteries-included syntax highlighting library for Rust, based on tree-sitter.
https://docs.rs/inkjet
Apache License 2.0
51 stars 2 forks source link

Use Helix queries where possible #3

Closed Colonial-Dev closed 10 months ago

Colonial-Dev commented 10 months ago

Early in development, I attempted to use nvim-treesitter highlighting queries so I could support more languages. Unfortunately, those queries tend to rely on nvim-specific matchers like lua-match, which means they tend to break when used with vanilla tree-sitter.

Helix has loads of queries that don't (?) have this issue.

Colonial-Dev commented 10 months ago

Resolved by ee628f2.