Update tree-sitter-elixir

This commit is contained in:
Michael Davis 2025-01-24 12:36:29 -05:00
parent 9088f8a599
commit 8bf9adf7b6
No known key found for this signature in database
2 changed files with 9 additions and 9 deletions

View file

@ -383,7 +383,7 @@ indent = { tab-width = 2, unit = " " }
[[grammar]] [[grammar]]
name = "elixir" name = "elixir"
source = { git = "https://github.com/elixir-lang/tree-sitter-elixir", rev = "b20eaa75565243c50be5e35e253d8beb58f45d56" } source = { git = "https://github.com/elixir-lang/tree-sitter-elixir", rev = "02a6f7fd4be28dd94ee4dd2ca19cb777053ea74e" }
[[language]] [[language]]
name = "fish" name = "fish"

View file

@ -35,7 +35,7 @@
quoted_end: _ @comment.block.documentation) @comment.block.documentation quoted_end: _ @comment.block.documentation) @comment.block.documentation
(boolean) @comment.block.documentation (boolean) @comment.block.documentation
])) ]))
(#match? @comment.block.documentation.__attribute__ "^(moduledoc|typedoc|doc)$")) (#any-of? @comment.block.documentation.__attribute__ "moduledoc" "typedoc" "doc"))
; * module attribute ; * module attribute
(unary_operator (unary_operator
@ -114,13 +114,13 @@
(sigil_name) @__name__ (sigil_name) @__name__
quoted_start: _ @string quoted_start: _ @string
quoted_end: _ @string quoted_end: _ @string
(#match? @__name__ "^[sS]$")) @string (#any-of? @__name__ "s" "S")) @string
(sigil (sigil
(sigil_name) @__name__ (sigil_name) @__name__
quoted_start: _ @string.regexp quoted_start: _ @string.regexp
quoted_end: _ @string.regexp quoted_end: _ @string.regexp
(#match? @__name__ "^[rR]$")) @string.regexp (#any-of? @__name__ "r" "R")) @string.regexp
(sigil (sigil
(sigil_name) @__name__ (sigil_name) @__name__
@ -132,12 +132,12 @@
; * definition keyword ; * definition keyword
(call (call
target: (identifier) @keyword target: (identifier) @keyword
(#match? @keyword "^(def|defdelegate|defexception|defguard|defguardp|defimpl|defmacro|defmacrop|defmodule|defn|defnp|defoverridable|defp|defprotocol|defstruct)$")) (#any-of? @keyword "def" "defdelegate" "defexception" "defguard" "defguardp" "defimpl" "defmacro" "defmacrop" "defmodule" "defn" "defnp" "defoverridable" "defp" "defprotocol" "defstruct"))
; * kernel or special forms keyword ; * kernel or special forms keyword
(call (call
target: (identifier) @keyword target: (identifier) @keyword
(#match? @keyword "^(alias|case|cond|else|for|if|import|quote|raise|receive|require|reraise|super|throw|try|unless|unquote|unquote_splicing|use|with)$")) (#any-of? @keyword "alias" "case" "cond" "else" "for" "if" "import" "quote" "raise" "receive" "require" "reraise" "super" "throw" "try" "unless" "unquote" "unquote_splicing" "use" "with"))
; * function call ; * function call
(call (call
@ -159,7 +159,7 @@
left: (identifier) @function left: (identifier) @function
operator: "when") operator: "when")
]) ])
(#match? @keyword "^(def|defdelegate|defguard|defguardp|defmacro|defmacrop|defn|defnp|defp)$")) (#any-of? @keyword "def" "defdelegate" "defguard" "defguardp" "defmacro" "defmacrop" "defn" "defnp" "defp"))
; * pipe into identifier (definition) ; * pipe into identifier (definition)
(call (call
@ -168,7 +168,7 @@
(binary_operator (binary_operator
operator: "|>" operator: "|>"
right: (identifier) @variable)) right: (identifier) @variable))
(#match? @keyword "^(def|defdelegate|defguard|defguardp|defmacro|defmacrop|defn|defnp|defp)$")) (#any-of? @keyword "def" "defdelegate" "defguard" "defguardp" "defmacro" "defmacrop" "defn" "defnp" "defp"))
; * pipe into identifier (function call) ; * pipe into identifier (function call)
(binary_operator (binary_operator
@ -180,7 +180,7 @@
; * special ; * special
( (
(identifier) @constant.builtin (identifier) @constant.builtin
(#match? @constant.builtin "^(__MODULE__|__DIR__|__ENV__|__CALLER__|__STACKTRACE__)$") (#any-of? @constant.builtin "__MODULE__" "__DIR__" "__ENV__" "__CALLER__" "__STACKTRACE__")
) )
; * unused ; * unused