From 8bf9adf7b6f60bac45c1d0d6a48cf3930c7dea1f Mon Sep 17 00:00:00 2001 From: Michael Davis Date: Fri, 24 Jan 2025 12:36:29 -0500 Subject: [PATCH] Update tree-sitter-elixir --- languages.toml | 2 +- runtime/queries/elixir/highlights.scm | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/languages.toml b/languages.toml index 82b57d235..2df7f7c6f 100644 --- a/languages.toml +++ b/languages.toml @@ -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" diff --git a/runtime/queries/elixir/highlights.scm b/runtime/queries/elixir/highlights.scm index 6c0d1094b..db4c64761 100644 --- a/runtime/queries/elixir/highlights.scm +++ b/runtime/queries/elixir/highlights.scm @@ -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