mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
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:
parent
ee33a84489
commit
16ff06370f
26 changed files with 0 additions and 58 deletions
|
@ -13,7 +13,6 @@
|
|||
|
||||
(string) @string
|
||||
(escape_sequence) @constant.character.escape
|
||||
(ERROR) @error
|
||||
|
||||
"," @punctuation.delimiter
|
||||
[
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
(ERROR) @markup.bold
|
||||
|
||||
[
|
||||
(jinja2_expression)
|
||||
(jinja2_statement)
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -38,6 +38,3 @@
|
|||
(comment) @comment
|
||||
|
||||
(preproc) @keyword.directive
|
||||
|
||||
(ERROR) @error
|
||||
|
||||
|
|
|
@ -153,7 +153,3 @@
|
|||
|
||||
((word) @constant.builtin.boolean
|
||||
(#match? @constant.builtin.boolean "^(true|false)$"))
|
||||
|
||||
;; Error
|
||||
|
||||
(ERROR) @error
|
||||
|
|
|
@ -25,5 +25,4 @@
|
|||
|
||||
"=" @operator
|
||||
|
||||
(ERROR) @error
|
||||
(comment) @comment
|
||||
|
|
|
@ -73,4 +73,3 @@
|
|||
(nil) @constant.builtin
|
||||
|
||||
(comment) @comment
|
||||
(ERROR) @error
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
(ERROR) @error
|
||||
|
||||
[
|
||||
"if"
|
||||
"else"
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
|
||||
(string) @string
|
||||
(escape_sequence) @constant.character.escape
|
||||
(ERROR) @error
|
||||
|
||||
"," @punctuation.delimiter
|
||||
[
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
;; General syntax
|
||||
(ERROR) @error
|
||||
|
||||
(command_name) @function
|
||||
(caption
|
||||
command: _ @function)
|
||||
|
|
|
@ -214,6 +214,3 @@
|
|||
["|" "," "." ":" ";"] @punctuation.delimiter
|
||||
|
||||
(sorry) @error
|
||||
|
||||
;; Error
|
||||
(ERROR) @error
|
||||
|
|
|
@ -142,5 +142,3 @@
|
|||
(instruction_flag)
|
||||
(float_keyword)
|
||||
] @keyword
|
||||
|
||||
(ERROR) @error
|
||||
|
|
|
@ -156,5 +156,3 @@
|
|||
"none"
|
||||
"zeroinitializer"
|
||||
] @constant.builtin
|
||||
|
||||
(ERROR) @error
|
||||
|
|
|
@ -219,6 +219,3 @@
|
|||
|
||||
;; Property
|
||||
(dot_index_expression field: (identifier) @variable.other.member)
|
||||
|
||||
;; Error
|
||||
(ERROR) @error
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -11,5 +11,3 @@
|
|||
|
||||
(number) @constant.numeric
|
||||
(string) @string
|
||||
|
||||
(ERROR) @error
|
||||
|
|
|
@ -229,5 +229,3 @@
|
|||
|
||||
(class_definition name: (identifier) @type)
|
||||
(class_definition superclasses: (argument_list (identifier) @type))
|
||||
|
||||
(ERROR) @error
|
||||
|
|
|
@ -122,6 +122,3 @@
|
|||
|
||||
(namespace_get function: (identifier) @function.method)
|
||||
(namespace_get_internal function: (identifier) @function.method)
|
||||
|
||||
; Error
|
||||
(ERROR) @error
|
||||
|
|
|
@ -50,4 +50,3 @@
|
|||
])
|
||||
|
||||
(class_character) @constant.character
|
||||
(ERROR) @error
|
||||
|
|
|
@ -219,8 +219,3 @@
|
|||
(jsx_self_closing_element ["/" ">" "<"] @punctuation.special)
|
||||
(jsx_fragment [">" "<" "/"] @punctuation.special)
|
||||
(jsx_attribute (property_identifier) @attribute)
|
||||
|
||||
; Error
|
||||
;----------
|
||||
|
||||
(ERROR) @keyword.control.exception
|
||||
|
|
|
@ -88,5 +88,3 @@
|
|||
"multiclass"
|
||||
"defm"
|
||||
] @namespace
|
||||
|
||||
(ERROR) @error
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
(ERROR) @error
|
||||
|
||||
(line_comment) @comment
|
||||
|
||||
(identifier) @variable
|
||||
|
|
|
@ -11,5 +11,4 @@
|
|||
(relative_pad) @constant
|
||||
(label) @label
|
||||
(sub_label) @label
|
||||
(ERROR) @error
|
||||
["[" "]" "{" "}"] @punctuation.bracket
|
||||
|
|
|
@ -307,5 +307,3 @@
|
|||
"("
|
||||
")"
|
||||
] @punctuation.bracket
|
||||
|
||||
(ERROR) @error
|
||||
|
|
|
@ -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))
|
||||
|
|
|
@ -1,10 +1,6 @@
|
|||
(ident) @variable
|
||||
(index) @variable
|
||||
|
||||
; Errors
|
||||
|
||||
(ERROR) @error
|
||||
|
||||
; Comments
|
||||
|
||||
(comment) @comment
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue