mirror of https://github.com/helix-editor/helix
Elixir: update tree-sitter queries (#3645)
parent
df1ed0a5fd
commit
da8071047a
|
@ -1,20 +1,16 @@
|
||||||
|
; Elixir Code Comments
|
||||||
((comment) @injection.content
|
((comment) @injection.content
|
||||||
(#set! injection.language "comment"))
|
(#set! injection.language "comment"))
|
||||||
|
|
||||||
|
; Elixir Regular Expressions
|
||||||
((sigil
|
((sigil
|
||||||
(sigil_name) @_sigil_name
|
(sigil_name) @_sigil_name
|
||||||
(quoted_content) @injection.content)
|
(quoted_content) @injection.content)
|
||||||
(#match? @_sigil_name "^(r|R)$")
|
(#match? @_sigil_name "^(R|r)$")
|
||||||
(#set! injection.language "regex")
|
(#set! injection.language "regex")
|
||||||
(#set! injection.combined))
|
(#set! injection.combined))
|
||||||
|
|
||||||
((sigil
|
; Elixir Markdown Documentation
|
||||||
(sigil_name) @_sigil_name
|
|
||||||
(quoted_content) @injection.content)
|
|
||||||
(#eq? @_sigil_name "H")
|
|
||||||
(#set! injection.language "heex")
|
|
||||||
(#set! injection.combined))
|
|
||||||
|
|
||||||
(unary_operator
|
(unary_operator
|
||||||
operator: "@"
|
operator: "@"
|
||||||
operand: (call
|
operand: (call
|
||||||
|
@ -23,3 +19,41 @@
|
||||||
(string (quoted_content) @injection.content)
|
(string (quoted_content) @injection.content)
|
||||||
(sigil (quoted_content) @injection.content)
|
(sigil (quoted_content) @injection.content)
|
||||||
])) (#set! injection.language "markdown"))
|
])) (#set! injection.language "markdown"))
|
||||||
|
|
||||||
|
; Zigler Sigils
|
||||||
|
((sigil
|
||||||
|
(sigil_name) @_sigil_name
|
||||||
|
(quoted_content) @injection.content)
|
||||||
|
(#match? @_sigil_name "^(Z|z)$")
|
||||||
|
(#set! injection.language "zig")
|
||||||
|
(#set! injection.combined))
|
||||||
|
|
||||||
|
; Jason Sigils
|
||||||
|
((sigil
|
||||||
|
(sigil_name) @_sigil_name
|
||||||
|
(quoted_content) @injection.content)
|
||||||
|
(#match? @_sigil_name "^(J|j)$")
|
||||||
|
(#set! injection.language "json")
|
||||||
|
(#set! injection.combined))
|
||||||
|
|
||||||
|
; Phoenix Live View HEEx Sigils
|
||||||
|
((sigil
|
||||||
|
(sigil_name) @_sigil_name
|
||||||
|
(quoted_content) @injection.content)
|
||||||
|
(#eq? @_sigil_name "H")
|
||||||
|
(#set! injection.language "heex")
|
||||||
|
(#set! injection.combined))
|
||||||
|
|
||||||
|
; Phoenix Live View Component Macros
|
||||||
|
(call
|
||||||
|
(identifier) @_identifier
|
||||||
|
(arguments
|
||||||
|
(atom)+
|
||||||
|
(keywords (pair
|
||||||
|
((keyword) @_keyword (#eq? @_keyword "doc: "))
|
||||||
|
[
|
||||||
|
(string (quoted_content) @injection.content)
|
||||||
|
(sigil (quoted_content) @injection.content)
|
||||||
|
]))
|
||||||
|
(#match? @_identifier "^(attr|slot)$")
|
||||||
|
(#set! injection.language "markdown")))
|
||||||
|
|
|
@ -32,4 +32,4 @@
|
||||||
(do_block (_)* @test.inside)?)
|
(do_block (_)* @test.inside)?)
|
||||||
(#match? @_keyword "^(test|describe)$")) @test.around
|
(#match? @_keyword "^(test|describe)$")) @test.around
|
||||||
|
|
||||||
(comment) @comment.around @comment.inside
|
(comment)+ @comment.around @comment.inside
|
||||||
|
|
Loading…
Reference in New Issue