mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
Update tree-sitter-elixir
This commit is contained in:
parent
9088f8a599
commit
8bf9adf7b6
2 changed files with 9 additions and 9 deletions
|
@ -383,7 +383,7 @@ indent = { tab-width = 2, unit = " " }
|
|||
|
||||
[[grammar]]
|
||||
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]]
|
||||
name = "fish"
|
||||
|
|
|
@ -35,7 +35,7 @@
|
|||
quoted_end: _ @comment.block.documentation) @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
|
||||
(unary_operator
|
||||
|
@ -114,13 +114,13 @@
|
|||
(sigil_name) @__name__
|
||||
quoted_start: _ @string
|
||||
quoted_end: _ @string
|
||||
(#match? @__name__ "^[sS]$")) @string
|
||||
(#any-of? @__name__ "s" "S")) @string
|
||||
|
||||
(sigil
|
||||
(sigil_name) @__name__
|
||||
quoted_start: _ @string.regexp
|
||||
quoted_end: _ @string.regexp
|
||||
(#match? @__name__ "^[rR]$")) @string.regexp
|
||||
(#any-of? @__name__ "r" "R")) @string.regexp
|
||||
|
||||
(sigil
|
||||
(sigil_name) @__name__
|
||||
|
@ -132,12 +132,12 @@
|
|||
; * definition keyword
|
||||
(call
|
||||
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
|
||||
(call
|
||||
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
|
||||
(call
|
||||
|
@ -159,7 +159,7 @@
|
|||
left: (identifier) @function
|
||||
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)
|
||||
(call
|
||||
|
@ -168,7 +168,7 @@
|
|||
(binary_operator
|
||||
operator: "|>"
|
||||
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)
|
||||
(binary_operator
|
||||
|
@ -180,7 +180,7 @@
|
|||
; * special
|
||||
(
|
||||
(identifier) @constant.builtin
|
||||
(#match? @constant.builtin "^(__MODULE__|__DIR__|__ENV__|__CALLER__|__STACKTRACE__)$")
|
||||
(#any-of? @constant.builtin "__MODULE__" "__DIR__" "__ENV__" "__CALLER__" "__STACKTRACE__")
|
||||
)
|
||||
|
||||
; * unused
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue