Elixir: update tree-sitter queries (#3645)
This commit is contained in:
parent
df1ed0a5fd
commit
da8071047a
2 changed files with 43 additions and 9 deletions
|
@ -1,20 +1,16 @@
|
|||
; Elixir Code Comments
|
||||
((comment) @injection.content
|
||||
(#set! injection.language "comment"))
|
||||
|
||||
; Elixir Regular Expressions
|
||||
((sigil
|
||||
(sigil_name) @_sigil_name
|
||||
(quoted_content) @injection.content)
|
||||
(#match? @_sigil_name "^(r|R)$")
|
||||
(#match? @_sigil_name "^(R|r)$")
|
||||
(#set! injection.language "regex")
|
||||
(#set! injection.combined))
|
||||
|
||||
((sigil
|
||||
(sigil_name) @_sigil_name
|
||||
(quoted_content) @injection.content)
|
||||
(#eq? @_sigil_name "H")
|
||||
(#set! injection.language "heex")
|
||||
(#set! injection.combined))
|
||||
|
||||
; Elixir Markdown Documentation
|
||||
(unary_operator
|
||||
operator: "@"
|
||||
operand: (call
|
||||
|
@ -23,3 +19,41 @@
|
|||
(string (quoted_content) @injection.content)
|
||||
(sigil (quoted_content) @injection.content)
|
||||
])) (#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)?)
|
||||
(#match? @_keyword "^(test|describe)$")) @test.around
|
||||
|
||||
(comment) @comment.around @comment.inside
|
||||
(comment)+ @comment.around @comment.inside
|
||||
|
|
Loading…
Add table
Reference in a new issue