mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 19:17:02 -04:00
fix(kitty): Generalized highlight query for ','
fix(kitty): Fixed issue with highlighting ease keywords
This commit is contained in:
parent
a65a63a285
commit
bd9cb6761e
2 changed files with 7 additions and 27 deletions
|
|
@ -1207,7 +1207,7 @@ return {
|
|||
},
|
||||
kitty = {
|
||||
install_info = {
|
||||
revision = '2c701bd6de4a54edfb5e2213ff8374b60061a61a',
|
||||
revision = '399e13e53fbcd702f125082eba3940ef0a1781b2',
|
||||
url = 'https://github.com/OXY2DEV/tree-sitter-kitty',
|
||||
},
|
||||
maintainers = { '@OXY2DEV' },
|
||||
|
|
|
|||
|
|
@ -71,9 +71,6 @@
|
|||
buffer: (string) @character)
|
||||
|
||||
;
|
||||
(keyboard_mode
|
||||
"," @punctuation.delimiter)
|
||||
|
||||
(keyboard_mode
|
||||
[
|
||||
"normal"
|
||||
|
|
@ -115,6 +112,8 @@
|
|||
|
||||
"=" @punctuation.delimiter
|
||||
|
||||
"," @punctuation.delimiter
|
||||
|
||||
(launch_type
|
||||
type: _ @type)
|
||||
|
||||
|
|
@ -339,9 +338,6 @@
|
|||
"ungrabbed"
|
||||
] @variable.parameter)
|
||||
|
||||
(mouse_mode
|
||||
"," @punctuation.delimiter)
|
||||
|
||||
; Options ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
(option_name) @keyword
|
||||
|
||||
|
|
@ -407,7 +403,9 @@
|
|||
|
||||
;
|
||||
((ease) @type
|
||||
(#match? @type "^[a-z-]$"))
|
||||
(#any-of? @type
|
||||
"linear" "ease" "ease-in-out" "ease-in" "ease-out" "step-start" "step-end" "ease" "ease-in"
|
||||
"ease-out" "ease-in-out"))
|
||||
|
||||
(ease_step
|
||||
"steps" @function.call)
|
||||
|
|
@ -418,9 +416,6 @@
|
|||
")"
|
||||
] @punctuation.bracket)
|
||||
|
||||
(ease_step
|
||||
"," @punctuation.delimiter)
|
||||
|
||||
(ease_step
|
||||
position: (ease_step_position) @type)
|
||||
|
||||
|
|
@ -433,9 +428,6 @@
|
|||
")"
|
||||
] @punctuation.bracket)
|
||||
|
||||
(cubic_bezier
|
||||
"," @punctuation.delimiter)
|
||||
|
||||
;
|
||||
(scrollback_pager
|
||||
command: (string) @string.special)
|
||||
|
|
@ -449,18 +441,12 @@
|
|||
characters: (string) @string.special)
|
||||
|
||||
;
|
||||
(paste_action_list
|
||||
"," @punctuation.delimiter)
|
||||
|
||||
(paste_action) @type
|
||||
|
||||
;
|
||||
(pointer) @type
|
||||
|
||||
;
|
||||
(layout_list
|
||||
"," @punctuation.delimiter)
|
||||
|
||||
(layout) @type
|
||||
|
||||
;
|
||||
|
|
@ -471,9 +457,6 @@
|
|||
] @type)
|
||||
|
||||
;
|
||||
(scale_value
|
||||
"," @punctuation.delimiter)
|
||||
|
||||
;
|
||||
(transparent_color
|
||||
"@" @punctuation.special
|
||||
|
|
@ -522,9 +505,6 @@
|
|||
(shell_feature) @type
|
||||
|
||||
;
|
||||
(source_stratagies
|
||||
"," @punctuation.delimiter)
|
||||
|
||||
(source_strategy) @type
|
||||
|
||||
;
|
||||
|
|
@ -569,4 +549,4 @@
|
|||
name: (string) @string.special)
|
||||
|
||||
; Comment ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
(comment) @comment @spell
|
||||
(comment) @comment
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue