queries: Remove (ERROR) from all highlights

We do not highlight `(ERROR)` nodes since the highlighting is quite
noisy while typing. Also see todo comments in `syntax.rs` - we could
introduce configuration in the future to prepend `(ERROR)` to a
language's highlights query.
This commit is contained in:
Michael Davis 2025-02-04 09:23:03 -05:00
parent ee33a84489
commit 16ff06370f
No known key found for this signature in database
26 changed files with 0 additions and 58 deletions

View file

@ -13,7 +13,6 @@
(string) @string
(escape_sequence) @constant.character.escape
(ERROR) @error
"," @punctuation.delimiter
[

View file

@ -1,5 +1,3 @@
(ERROR) @markup.bold
[
(jinja2_expression)
(jinja2_statement)

View file

@ -233,7 +233,3 @@
; when used as an identifier:
((identifier) @variable.builtin
(#match? @variable.builtin "^(abstract|as|base|covariant|deferred|dynamic|export|external|factory|Function|get|implements|import|interface|library|operator|mixin|part|sealed|set|static|typedef)$"))
; Error
(ERROR) @error

View file

@ -38,6 +38,3 @@
(comment) @comment
(preproc) @keyword.directive
(ERROR) @error

View file

@ -153,7 +153,3 @@
((word) @constant.builtin.boolean
(#match? @constant.builtin.boolean "^(true|false)$"))
;; Error
(ERROR) @error

View file

@ -25,5 +25,4 @@
"=" @operator
(ERROR) @error
(comment) @comment

View file

@ -73,4 +73,3 @@
(nil) @constant.builtin
(comment) @comment
(ERROR) @error

View file

@ -1,5 +1,3 @@
(ERROR) @error
[
"if"
"else"

View file

@ -10,7 +10,6 @@
(string) @string
(escape_sequence) @constant.character.escape
(ERROR) @error
"," @punctuation.delimiter
[

View file

@ -1,6 +1,4 @@
;; General syntax
(ERROR) @error
(command_name) @function
(caption
command: _ @function)

View file

@ -214,6 +214,3 @@
["|" "," "." ":" ";"] @punctuation.delimiter
(sorry) @error
;; Error
(ERROR) @error

View file

@ -142,5 +142,3 @@
(instruction_flag)
(float_keyword)
] @keyword
(ERROR) @error

View file

@ -156,5 +156,3 @@
"none"
"zeroinitializer"
] @constant.builtin
(ERROR) @error

View file

@ -219,6 +219,3 @@
;; Property
(dot_index_expression field: (identifier) @variable.other.member)
;; Error
(ERROR) @error

View file

@ -247,5 +247,3 @@
((identifier) @type.builtin
(#match? @type.builtin
"^(BaseException|Exception|ArithmeticError|BufferError|LookupError|AssertionError|AttributeError|EOFError|FloatingPointError|GeneratorExit|ImportError|ModuleNotFoundError|IndexError|KeyError|KeyboardInterrupt|MemoryError|NameError|NotImplementedError|OSError|OverflowError|RecursionError|ReferenceError|RuntimeError|StopIteration|StopAsyncIteration|SyntaxError|IndentationError|TabError|SystemError|SystemExit|TypeError|UnboundLocalError|UnicodeError|UnicodeEncodeError|UnicodeDecodeError|UnicodeTranslateError|ValueError|ZeroDivisionError|EnvironmentError|IOError|WindowsError|BlockingIOError|ChildProcessError|ConnectionError|BrokenPipeError|ConnectionAbortedError|ConnectionRefusedError|ConnectionResetError|FileExistsError|FileNotFoundError|InterruptedError|IsADirectoryError|NotADirectoryError|PermissionError|ProcessLookupError|TimeoutError|Warning|UserWarning|DeprecationWarning|PendingDeprecationWarning|SyntaxWarning|RuntimeWarning|FutureWarning|ImportWarning|UnicodeWarning|BytesWarning|ResourceWarning)$"))
(ERROR) @error

View file

@ -11,5 +11,3 @@
(number) @constant.numeric
(string) @string
(ERROR) @error

View file

@ -229,5 +229,3 @@
(class_definition name: (identifier) @type)
(class_definition superclasses: (argument_list (identifier) @type))
(ERROR) @error

View file

@ -122,6 +122,3 @@
(namespace_get function: (identifier) @function.method)
(namespace_get_internal function: (identifier) @function.method)
; Error
(ERROR) @error

View file

@ -50,4 +50,3 @@
])
(class_character) @constant.character
(ERROR) @error

View file

@ -219,8 +219,3 @@
(jsx_self_closing_element ["/" ">" "<"] @punctuation.special)
(jsx_fragment [">" "<" "/"] @punctuation.special)
(jsx_attribute (property_identifier) @attribute)
; Error
;----------
(ERROR) @keyword.control.exception

View file

@ -88,5 +88,3 @@
"multiclass"
"defm"
] @namespace
(ERROR) @error

View file

@ -1,5 +1,3 @@
(ERROR) @error
(line_comment) @comment
(identifier) @variable

View file

@ -11,5 +11,4 @@
(relative_pad) @constant
(label) @label
(sub_label) @label
(ERROR) @error
["[" "]" "{" "}"] @punctuation.bracket

View file

@ -307,5 +307,3 @@
"("
")"
] @punctuation.bracket
(ERROR) @error

View file

@ -12,7 +12,6 @@
(alias_name) @type
(tag) @type
(yaml_directive) @keyword
(ERROR) @error
(block_mapping_pair
key: (flow_node [(double_quote_scalar) (single_quote_scalar)] @variable.other.member))

View file

@ -1,10 +1,6 @@
(ident) @variable
(index) @variable
; Errors
(ERROR) @error
; Comments
(comment) @comment