Update generated neovim config
This commit is contained in:
@ -0,0 +1,175 @@
|
||||
; Include
|
||||
|
||||
"#include" @include
|
||||
(include_path) @string
|
||||
|
||||
; Preproc
|
||||
|
||||
[
|
||||
"#pragma"
|
||||
] @preproc
|
||||
|
||||
(pragma_directive
|
||||
[
|
||||
"version"
|
||||
"not-version"
|
||||
"test-version-set"
|
||||
] @preproc)
|
||||
|
||||
; Keywords
|
||||
|
||||
[
|
||||
"asm"
|
||||
"impure"
|
||||
"inline"
|
||||
"inline_ref"
|
||||
"method_id"
|
||||
"type"
|
||||
] @keyword
|
||||
|
||||
[
|
||||
"return"
|
||||
] @keyword.return
|
||||
|
||||
; Conditionals
|
||||
|
||||
[
|
||||
"if"
|
||||
"ifnot"
|
||||
"else"
|
||||
"elseif"
|
||||
"elseifnot"
|
||||
"until"
|
||||
] @conditional
|
||||
|
||||
; Exceptions
|
||||
|
||||
[
|
||||
"try"
|
||||
"catch"
|
||||
] @exception
|
||||
|
||||
; Repeats
|
||||
|
||||
[
|
||||
"do"
|
||||
"forall"
|
||||
"repeat"
|
||||
"while"
|
||||
] @repeat
|
||||
|
||||
; Qualifiers
|
||||
[
|
||||
"const"
|
||||
"global"
|
||||
(var)
|
||||
] @type.qualifier
|
||||
|
||||
; Variables
|
||||
|
||||
(identifier) @variable
|
||||
|
||||
; Constants
|
||||
|
||||
(const_var_declarations
|
||||
name: (identifier) @constant)
|
||||
|
||||
; Functions/Methods
|
||||
|
||||
(function_definition
|
||||
name: (function_name) @function)
|
||||
|
||||
(function_application
|
||||
function: (identifier) @function)
|
||||
|
||||
(method_call
|
||||
method_name: (identifier) @method.call)
|
||||
|
||||
; Parameters
|
||||
|
||||
(parameter) @parameter
|
||||
|
||||
; Types
|
||||
|
||||
(type_identifier) @type
|
||||
|
||||
(primitive_type) @type.builtin
|
||||
|
||||
; Operators
|
||||
|
||||
[
|
||||
"="
|
||||
"+="
|
||||
"-="
|
||||
"*="
|
||||
"/="
|
||||
"~/="
|
||||
"^/="
|
||||
"%="
|
||||
"~%="
|
||||
"^%="
|
||||
"<<="
|
||||
">>="
|
||||
"~>>="
|
||||
"^>>="
|
||||
"&="
|
||||
"|="
|
||||
"^="
|
||||
"=="
|
||||
"<"
|
||||
">"
|
||||
"<="
|
||||
">="
|
||||
"!="
|
||||
"<=>"
|
||||
"<<"
|
||||
">>"
|
||||
"~>>"
|
||||
"^>>"
|
||||
"-"
|
||||
"+"
|
||||
"|"
|
||||
"^"
|
||||
"*"
|
||||
"/"
|
||||
"%"
|
||||
"~/"
|
||||
"^/"
|
||||
"~%"
|
||||
"^%"
|
||||
"/%"
|
||||
"&"
|
||||
"~"
|
||||
] @operator
|
||||
|
||||
; Literals
|
||||
|
||||
[
|
||||
(string)
|
||||
(asm_instruction)
|
||||
] @string
|
||||
|
||||
[
|
||||
(string_type)
|
||||
(underscore)
|
||||
] @character.special
|
||||
|
||||
(number) @number
|
||||
|
||||
; Punctuation
|
||||
|
||||
["{" "}"] @punctuation.bracket
|
||||
|
||||
["(" ")" "()"] @punctuation.bracket
|
||||
|
||||
["[" "]"] @punctuation.bracket
|
||||
|
||||
[
|
||||
";"
|
||||
","
|
||||
"->"
|
||||
] @punctuation.delimiter
|
||||
|
||||
; Comments
|
||||
|
||||
(comment) @comment @spell
|
||||
Reference in New Issue
Block a user