mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 01:16:18 +04:00
Updated elixir queries to fix crash
This commit is contained in:
parent
5e2ba28e0e
commit
35feb614b6
@ -17,7 +17,8 @@
|
||||
(atom_content)
|
||||
(atom_end)] @tag
|
||||
|
||||
(comment) @comment
|
||||
[(comment)
|
||||
(unused_identifier)] @comment
|
||||
|
||||
(escape_sequence) @escape
|
||||
|
||||
@ -50,8 +51,7 @@
|
||||
left: (identifier) @variable.parameter
|
||||
operator: _ @function
|
||||
right: (identifier) @variable.parameter)]
|
||||
(#match? @keyword "^(defp|def|defmacrop|defmacro|defguardp|defguard|defdelegate)$")
|
||||
(#match? @variable.parameter "^[^_]"))
|
||||
(#match? @keyword "^(defp|def|defmacrop|defmacro|defguardp|defguard|defdelegate)$"))
|
||||
|
||||
(call (function_identifier) @keyword
|
||||
[(call
|
||||
@ -73,8 +73,7 @@
|
||||
(_ (_ (identifier) @variable.parameter))
|
||||
(_ (_ (_ (identifier) @variable.parameter)))
|
||||
(_ (_ (_ (_ (identifier) @variable.parameter))))
|
||||
(_ (_ (_ (_ (_ (identifier) @variable.parameter)))))]))
|
||||
(#match? @variable.parameter "^[^_]"))
|
||||
(_ (_ (_ (_ (_ (identifier) @variable.parameter)))))])))
|
||||
|
||||
(unary_op
|
||||
operator: "@"
|
||||
@ -134,13 +133,6 @@
|
||||
">>"
|
||||
] @punctuation.bracket
|
||||
|
||||
[(identifier) @function.special
|
||||
(#match? @function.special "^__.+__$")]
|
||||
|
||||
[(remote_identifier) @function.special
|
||||
(#match? @function.special "^__.+__$")]
|
||||
|
||||
[(identifier) @comment
|
||||
(#match? @comment "^_")]
|
||||
(special_identifier) @function.special
|
||||
|
||||
(ERROR) @warning
|
||||
|
Loading…
Reference in New Issue
Block a user