mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-06 21:40:03 -04:00
feat!: drop modules, general refactor and cleanup
This commit is contained in:
parent
c13e28f894
commit
2c8f2f2fad
829 changed files with 4905 additions and 8010 deletions
56
runtime/queries/elixir/injections.scm
Normal file
56
runtime/queries/elixir/injections.scm
Normal file
|
|
@ -0,0 +1,56 @@
|
|||
; Comments
|
||||
((comment) @injection.content
|
||||
(#set! injection.language "comment"))
|
||||
|
||||
; Documentation
|
||||
(unary_operator
|
||||
operator: "@"
|
||||
operand: (call
|
||||
target: ((identifier) @_identifier (#any-of? @_identifier "moduledoc" "typedoc" "shortdoc" "doc"))
|
||||
(arguments [
|
||||
(string (quoted_content) @injection.content)
|
||||
(sigil (quoted_content) @injection.content)
|
||||
])
|
||||
(#set! injection.language "markdown")))
|
||||
|
||||
; HEEx
|
||||
(sigil
|
||||
(sigil_name) @_sigil_name
|
||||
(quoted_content) @injection.content
|
||||
(#eq? @_sigil_name "H")
|
||||
(#set! injection.language "heex"))
|
||||
|
||||
; Surface
|
||||
(sigil
|
||||
(sigil_name) @_sigil_name
|
||||
(quoted_content) @injection.content
|
||||
(#eq? @_sigil_name "F")
|
||||
(#set! injection.language "surface"))
|
||||
|
||||
; Zigler
|
||||
(sigil
|
||||
(sigil_name) @_sigil_name
|
||||
(quoted_content) @injection.content
|
||||
(#any-of? @_sigil_name "E" "L")
|
||||
(#set! injection.language "eex"))
|
||||
|
||||
(sigil
|
||||
(sigil_name) @_sigil_name
|
||||
(quoted_content) @injection.content
|
||||
(#any-of? @_sigil_name "z" "Z")
|
||||
(#set! injection.language "zig"))
|
||||
|
||||
; Regex
|
||||
(sigil
|
||||
(sigil_name) @_sigil_name
|
||||
(quoted_content) @injection.content
|
||||
(#any-of? @_sigil_name "r" "R")
|
||||
(#set! injection.language "regex"))
|
||||
|
||||
; Json
|
||||
(sigil
|
||||
(sigil_name) @_sigil_name
|
||||
(quoted_content) @injection.content
|
||||
(#any-of? @_sigil_name "j" "J")
|
||||
(#set! injection.language "json"))
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue