mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-06 20:37:44 +03:00
Highlight query improvements for java and typescript (#7145)
* Add missing queries to java highlights * Fix generic type bracket highlights in typescript
This commit is contained in:
parent
61a89956e3
commit
86ef389c0d
2 changed files with 93 additions and 9 deletions
|
@ -13,8 +13,6 @@
|
|||
(marker_annotation
|
||||
name: (identifier) @attribute)
|
||||
|
||||
"@" @operator
|
||||
|
||||
; Types
|
||||
|
||||
(interface_declaration
|
||||
|
@ -48,6 +46,9 @@
|
|||
(void_type)
|
||||
] @type.builtin
|
||||
|
||||
(type_arguments
|
||||
(wildcard "?" @type.builtin))
|
||||
|
||||
; Variables
|
||||
|
||||
((identifier) @constant
|
||||
|
@ -87,6 +88,84 @@
|
|||
(line_comment) @comment
|
||||
(block_comment) @comment
|
||||
|
||||
; Punctuation
|
||||
|
||||
[
|
||||
"::"
|
||||
"."
|
||||
";"
|
||||
","
|
||||
] @punctuation.delimiter
|
||||
|
||||
[
|
||||
"@"
|
||||
"..."
|
||||
] @punctuation.special
|
||||
|
||||
[
|
||||
"("
|
||||
")"
|
||||
"["
|
||||
"]"
|
||||
"{"
|
||||
"}"
|
||||
] @punctuation.bracket
|
||||
|
||||
(type_arguments
|
||||
[
|
||||
"<"
|
||||
">"
|
||||
] @punctuation.bracket)
|
||||
|
||||
(type_parameters
|
||||
[
|
||||
"<"
|
||||
">"
|
||||
] @punctuation.bracket)
|
||||
|
||||
; Operators
|
||||
|
||||
[
|
||||
"="
|
||||
">"
|
||||
"<"
|
||||
"!"
|
||||
"~"
|
||||
"?"
|
||||
":"
|
||||
"->"
|
||||
"=="
|
||||
">="
|
||||
"<="
|
||||
"!="
|
||||
"&&"
|
||||
"||"
|
||||
"++"
|
||||
"--"
|
||||
"+"
|
||||
"-"
|
||||
"*"
|
||||
"/"
|
||||
"&"
|
||||
"|"
|
||||
"^"
|
||||
"%"
|
||||
"<<"
|
||||
">>"
|
||||
">>>"
|
||||
"+="
|
||||
"-="
|
||||
"*="
|
||||
"/="
|
||||
"&="
|
||||
"|="
|
||||
"^="
|
||||
"%="
|
||||
"<<="
|
||||
">>="
|
||||
">>>="
|
||||
] @operator
|
||||
|
||||
; Keywords
|
||||
|
||||
[
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue