mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 20:07:44 +03:00
update to newest rescript treesitter library and queries (#11165)
Co-authored-by: Michael Davis <mcarsondavis@gmail.com> Co-authored-by: Freddie Ridell <freddie@Gilbraith-MacBook-Pro.local>
This commit is contained in:
parent
4e2faa0be9
commit
07968880e6
5 changed files with 50 additions and 24 deletions
|
@ -1,8 +1,29 @@
|
|||
((comment) @injection.content
|
||||
(#set! injection.language "comment"))
|
||||
((comment) @injection.content (#set! injection.language "comment"))
|
||||
|
||||
((raw_js) @injection.content
|
||||
(#set! injection.language "javascript"))
|
||||
; %re
|
||||
(extension_expression
|
||||
(extension_identifier) @_name
|
||||
(#eq? @_name "re")
|
||||
(expression_statement (_) @injection.content (#set! injection.language "regex")))
|
||||
|
||||
; %raw
|
||||
(extension_expression
|
||||
(extension_identifier) @_name
|
||||
(#eq? @_name "raw")
|
||||
(expression_statement
|
||||
(_ (_) @injection.content (#set! injection.language "javascript"))))
|
||||
|
||||
; %graphql
|
||||
(extension_expression
|
||||
(extension_identifier) @_name
|
||||
(#eq? @_name "graphql")
|
||||
(expression_statement
|
||||
(_ (_) @injection.content (#set! injection.language "graphql"))))
|
||||
|
||||
; %relay
|
||||
(extension_expression
|
||||
(extension_identifier) @_name
|
||||
(#eq? @_name "relay")
|
||||
(expression_statement
|
||||
(_ (_) @injection.content (#set! injection.language "graphql") )))
|
||||
|
||||
((raw_gql) @injection.content
|
||||
(#set! injection.language "graphql"))
|
Loading…
Add table
Add a link
Reference in a new issue