Add pest support (#10616)

Support [pest-parser](https://github.com/pest-parser)

- [pest-language-server](https://github.com/pest-parser/pest-ide-tools)
- [tree-sitter-pest](https://github.com/pest-parser/tree-sitter-pest)

close #7878
This commit is contained in:
Erasin Wang 2024-04-29 23:44:03 +08:00 committed by GitHub
parent ec224798e7
commit 724a96abc8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 95 additions and 0 deletions

View file

@ -0,0 +1,8 @@
(grammar_rule (_) @class.inside) @class.around
(term (_) @entry.inside) @entry.around
(line_comment) @comment.inside
(line_comment)+ @comment.around
(block_comment) @comment.inside
(block_comment)+ @comment.around