queries: Fix precedence in Erlang highlights

This commit is contained in:
Michael Davis 2025-02-25 10:10:04 -05:00
parent fcddd50325
commit e1060a2785
No known key found for this signature in database

View file

@ -5,9 +5,9 @@
; Basic types ; Basic types
(variable) @variable (variable) @variable
(atom) @string.special.symbol
((atom) @constant.builtin.boolean ((atom) @constant.builtin.boolean
(#match? @constant.builtin.boolean "^(true|false)$")) (#match? @constant.builtin.boolean "^(true|false)$"))
(atom) @string.special.symbol
[(string) (sigil)] @string [(string) (sigil)] @string
(character) @constant.character (character) @constant.character
(escape_sequence) @constant.character.escape (escape_sequence) @constant.character.escape
@ -20,6 +20,10 @@
["(" ")" "#" "{" "}" "[" "]" "<<" ">>"] @punctuation.bracket ["(" ")" "#" "{" "}" "[" "]" "<<" ">>"] @punctuation.bracket
; Operators ; Operators
(binary_operator operator: _ @operator)
(unary_operator operator: _ @operator)
["/" ":" "->"] @operator
(binary_operator (binary_operator
left: (atom) @function left: (atom) @function
operator: "/" operator: "/"
@ -30,10 +34,13 @@
((unary_operator operator: _ @keyword.operator) ((unary_operator operator: _ @keyword.operator)
(#match? @keyword.operator "^\\w+$")) (#match? @keyword.operator "^\\w+$"))
(binary_operator operator: _ @operator) ; Functions
(unary_operator operator: _ @operator) (function_clause name: (atom) @function)
["/" ":" "->"] @operator (call module: (atom) @namespace)
(call function: (atom) @function)
(stab_clause name: (atom) @function)
(function_capture module: (atom) @namespace)
(function_capture function: (atom) @function)
; Keywords ; Keywords
(attribute name: (atom) @keyword) (attribute name: (atom) @keyword)
@ -107,13 +114,9 @@
] @comment.block.documentation) ] @comment.block.documentation)
(#any-of? @keyword "doc" "moduledoc")) (#any-of? @keyword "doc" "moduledoc"))
; Functions ; Ignored variables
(function_clause name: (atom) @function) ((variable) @comment.discard
(call module: (atom) @namespace) (#match? @comment.discard "^_"))
(call function: (atom) @function)
(stab_clause name: (atom) @function)
(function_capture module: (atom) @namespace)
(function_capture function: (atom) @function)
; Macros ; Macros
(macro (macro
@ -125,10 +128,6 @@
"?"+ @keyword.directive "?"+ @keyword.directive
name: (_) @keyword.directive) name: (_) @keyword.directive)
; Ignored variables
((variable) @comment.discard
(#match? @comment.discard "^_"))
; Parameters ; Parameters
; specs ; specs
((attribute ((attribute