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,164 @@
(id) @variable
(comment) @comment
; Literals
(null) @constant.builtin
(string) @string
(number) @number
[
(true)
(false)
] @boolean
; Keywords
"for" @repeat
"in" @keyword.operator
"function" @keyword.function
[
"if"
"then"
"else"
] @conditional
[
(local)
(tailstrict)
"function"
"assert"
"error"
] @keyword
[
(dollar)
(self)
(super)
] @variable.builtin
((id) @variable.builtin
(#eq? @variable.builtin "std"))
; Operators
[
(multiplicative)
(additive)
(bitshift)
(comparison)
(equality)
(bitand)
(bitxor)
(bitor)
(and)
(or)
(unaryop)
] @operator
; Punctuation
[
"["
"]"
"{"
"}"
"("
")"
] @punctuation.bracket
[
"."
","
";"
":"
] @punctuation.delimiter
[
"::"
":::"
] @punctuation.special
(field
(fieldname) "+" @punctuation.special)
; Imports
[
(import)
(importstr)
] @include
; References
; Make reference same color as parameter
; (may incur performance issues on big files)
; Depends on locals.scm
((id) @parameter.reference
(#is? @parameter.reference parameter))
((id) @function.reference
(#is? @function.reference function))
((id) @var.reference
(#is? @var.reference var))
((id) @define
(#is? @var.reference var))
; References do not apply to static field IDs
; Workaround for `(#is-not? local)` not supported
(fieldname (id) @field)
(fieldname (string
(string_start) @text.strong
(string_content) @field
(string_end) @text.strong
))
; But it does apply if ID in an expression
(fieldname
("["
(id) @parameter.reference
"]"
(#is? @parameter.reference parameter)))
(fieldname
("["
(id) @define
"]"
(#is? @var.reference var)))
; Functions
(field
function: (fieldname (id) @function))
(field
function: (fieldname
(string
(string_start) @text.strong
(string_content) @function
(string_end) @text.strong
)))
(param
identifier: (id) @parameter)
(bind (id) @define)
(bind function: (id) @function)
; Function call
(functioncall
(fieldaccess
last: (id) @function.call
)?
(fieldaccess_super
(id) @function.call
)?
(id)? @function.call
"("
(args
(named_argument
(id) @parameter
)
)?
")"
)
; Emphasize implicit plus usage
(implicit_plus
(_ "}"? @text.danger)
(object
"{" @text.danger
)
)
; ERROR
(ERROR) @error