1

Update generated neovim config

This commit is contained in:
2024-08-15 14:28:54 +02:00
parent 07409c223d
commit 25cfcf2941
3809 changed files with 351157 additions and 0 deletions

View File

@ -0,0 +1,64 @@
[(double_quote_string) (single_quote_string)] @string
(escape_sequence) @string.escape
(comment) @comment
[(integer) (float)] @number
[
"&&"
"||"
"|"
"&|"
"2>|"
"&"
".."
(direction)
(stream_redirect)
] @operator
; match operators of test command
(command
name: (word) @function (#match? @function "^test$")
argument: (word) @operator (#match? @operator "^(!?=|-[a-zA-Z]+)$"))
; match operators of [ command
(command
name: (word) @punctuation.bracket (#match? @punctuation.bracket "^\\[$")
argument: (word) @operator (#match? @operator "^(!?=|-[a-zA-Z]+)$"))
(variable_expansion) @constant
[
"["
"]"
"{"
"}"
"("
")"
] @punctuation.bracket
"," @punctuation.delimiter
(function_definition name: [(word) (concatenation)] @function)
(command name: (word) @function)
[
"switch"
"case"
"in"
"begin"
"function"
"if"
"else"
"end"
"while"
"for"
"not"
"!"
"and"
"or"
"return"
(break)
(continue)
] @keyword