mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
Highlight $ template literals as shell commands (#12751)
This commit is contained in:
parent
30616344d7
commit
e70f8833e2
1 changed files with 12 additions and 0 deletions
|
@ -10,6 +10,18 @@
|
||||||
arguments: (template_string) @injection.content
|
arguments: (template_string) @injection.content
|
||||||
(#any-of? @injection.language "html" "css" "json" "sql" "js" "ts" "bash"))
|
(#any-of? @injection.language "html" "css" "json" "sql" "js" "ts" "bash"))
|
||||||
|
|
||||||
|
; Parse the contents of $ template literals as shell commands
|
||||||
|
|
||||||
|
(call_expression
|
||||||
|
function: [
|
||||||
|
(identifier) @_template_function_name
|
||||||
|
(member_expression
|
||||||
|
property: (property_identifier) @_template_function_name)
|
||||||
|
]
|
||||||
|
arguments: (template_string) @injection.content
|
||||||
|
(#eq? @_template_function_name "$")
|
||||||
|
(#set! injection.language "bash"))
|
||||||
|
|
||||||
; Parse the contents of gql template literals
|
; Parse the contents of gql template literals
|
||||||
|
|
||||||
((call_expression
|
((call_expression
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue