Highlight $ template literals as shell commands (#12751)

This commit is contained in:
uncenter 2025-02-01 19:18:08 -05:00 committed by GitHub
parent 30616344d7
commit e70f8833e2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -10,6 +10,18 @@
arguments: (template_string) @injection.content
(#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
((call_expression