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,13 @@
[
(assert)
(class)
(multiclass)
(def)
(defm)
(defset)
(defvar)
(foreach)
(if)
(let)
(value_suffix)
] @fold

View File

@ -0,0 +1,156 @@
; Preprocs
(preprocessor_directive) @preproc
; Includes
"include" @include
; Keywords
[
"assert"
"class"
"multiclass"
"field"
"let"
"def"
"defm"
"defset"
"defvar"
] @keyword
[
"in"
] @keyword.operator
; Conditionals
[
"if"
"else"
"then"
] @conditional
; Repeats
[
"foreach"
] @repeat
; Variables
(identifier) @variable
(var) @tag ; need something more suitable, but nothing fits as "correctly" as @tag, maybe @variable.builtin
; Parameters
(template_arg (identifier) @parameter)
; Types
(type) @type
[
"bit"
"int"
"string"
"dag"
"bits"
"list"
"code"
] @type.builtin
(class name: (identifier) @type)
(multiclass name: (identifier) @type)
(def name: (value (_) @type))
(defm name: (value (_) @type))
(defset name: (identifier) @type)
(parent_class_list (identifier) @type (value (_) @type)?)
(anonymous_record (identifier) @type)
(anonymous_record (value (_) @type))
((identifier) @type
(#lua-match? @type "^_*[A-Z][A-Z0-9_]+$"))
; Fields
(instruction
(identifier) @field)
(let_instruction
(identifier) @field)
; Functions
([
(bang_operator)
(cond_operator)
] @function
(#set! "priority" 105))
; Operators
[
"="
"#"
"-"
":"
"..."
] @operator
; Literals
(string) @string
(code) @string.special
(integer) @number
(boolean) @boolean
(uninitialized_value) @constant.builtin
; Punctuation
[ "{" "}" ] @punctuation.bracket
[ "[" "]" ] @punctuation.bracket
[ "(" ")" ] @punctuation.bracket
[ "<" ">" ] @punctuation.bracket
[
"."
","
";"
] @punctuation.delimiter
[
"!"
] @punctuation.special
; Comments
[
(comment)
(multiline_comment)
] @comment @spell
((comment) @preproc
(#lua-match? @preproc "^.*RUN"))
; Errors
(ERROR) @error

View File

@ -0,0 +1,27 @@
[
(assert)
(class)
(multiclass)
(def)
(defm)
(defvar)
(foreach)
(if)
(let)
(value_suffix)
] @indent
[
"}"
"]"
")"
">"
] @indent_end
[ "{" "}" ] @branch
[ "[" "]" ] @branch
[ "(" ")" ] @branch
[ "<" ">" ] @branch

View File

@ -0,0 +1,7 @@
((code) @cpp
(#offset! @cpp 0 2 0 -2))
((tablegen_file
(comment) @bash)
(#lua-match? @bash "^.*RUN")
(#offset! @bash 0 8))

View File

@ -0,0 +1,51 @@
; Scopes
[
(class)
(multiclass)
(def)
(defm)
(defset)
(defvar)
(foreach)
(if)
(let)
] @scope
; References
[
(var)
(identifier)
] @reference
; Definitions
(instruction
(identifier) @definition.field)
(let_instruction
(identifier) @definition.field)
(include_directive
(string) @definition.import)
(template_arg (identifier) @definition.parameter)
(class
name: (identifier) @definition.type)
(multiclass
name: (identifier) @definition.type)
(def
name: (value (_) @definition.type))
(defm
name: (value (_) @definition.type))
(defset
name: (identifier) @definition.type)
(def_var
name: (identifier) @definition.var)