mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 11:57:43 +03:00
feat(languages): GraphQL (#1515)
* Add Graphql language support * Fix docs gen * Add JS Graphql injection query * Updates based on PR feedback Co-authored-by: Blaž Hrastnik <blaz@mxxn.io>
This commit is contained in:
parent
f453f8724d
commit
0b55b21f30
6 changed files with 185 additions and 0 deletions
|
@ -9,6 +9,14 @@
|
|||
]
|
||||
arguments: (template_string) @injection.content)
|
||||
|
||||
; Parse the contents of gql template literals
|
||||
|
||||
((call_expression
|
||||
function: (identifier) @_template_function_name
|
||||
arguments: (template_string) @injection.content)
|
||||
(#eq? @_template_function_name "gql")
|
||||
(#set! injection.language "graphql"))
|
||||
|
||||
; Parse regex syntax within regex literals
|
||||
|
||||
((regex_pattern) @injection.content
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue