Update generated neovim config
This commit is contained in:
@ -0,0 +1,82 @@
|
||||
;; SPDX-License-Identifier: 0BSD
|
||||
;; SPDX-FileCopyrightText: 2022 Tobias Frilling
|
||||
|
||||
(comment) @comment
|
||||
|
||||
(if "if" @conditional)
|
||||
(if (elif "elif" @conditional))
|
||||
(if (else "else" @conditional))
|
||||
|
||||
(while "while" @repeat)
|
||||
(while (else "else" @repeat))
|
||||
(for "for" @repeat)
|
||||
(for (else "else" @repeat))
|
||||
|
||||
(try "try" @exception)
|
||||
(try (catch "catch" @exception))
|
||||
(try (else "else" @exception))
|
||||
(try (finally "finally" @exception))
|
||||
|
||||
(import "use" @include)
|
||||
(import (bareword) @string.special)
|
||||
|
||||
(wildcard ["*" "**" "?"] @string.special)
|
||||
|
||||
(command argument: (bareword) @parameter)
|
||||
(command head: (identifier) @function)
|
||||
((command head: (identifier) @keyword.return)
|
||||
(#eq? @keyword.return "return"))
|
||||
((command (identifier) @keyword.operator)
|
||||
(#any-of? @keyword.operator "and" "or" "coalesce"))
|
||||
((command head: _ @function)
|
||||
(#any-of? @function
|
||||
"+" "-" "*" "/" "%" "<" "<=""==" "!=" ">"
|
||||
">=" "<s" "<=s" "==s" "!=s" ">s" ">=s"
|
||||
))
|
||||
|
||||
(pipeline "|" @operator)
|
||||
(redirection [">" "<" ">>" "<>"] @operator)
|
||||
|
||||
(io_port) @number
|
||||
|
||||
(function_definition
|
||||
"fn" @keyword.function
|
||||
(identifier) @function)
|
||||
|
||||
(parameter_list) @parameter
|
||||
(parameter_list "|" @punctuation.bracket)
|
||||
|
||||
(variable_declaration
|
||||
"var" @keyword
|
||||
(lhs (identifier) @variable))
|
||||
|
||||
(variable_assignment
|
||||
"set" @keyword
|
||||
(lhs (identifier) @variable))
|
||||
|
||||
(temporary_assignment
|
||||
"tmp" @keyword
|
||||
(lhs (identifier) @variable))
|
||||
|
||||
(variable_deletion
|
||||
"del" @keyword
|
||||
(identifier) @variable)
|
||||
|
||||
|
||||
(number) @number
|
||||
(string) @string
|
||||
|
||||
(variable (identifier) @variable)
|
||||
((variable (identifier) @function)
|
||||
(#match? @function ".+\\~$"))
|
||||
((variable (identifier) @boolean)
|
||||
(#any-of? @boolean "true" "false"))
|
||||
((variable (identifier) @constant.builtin)
|
||||
(#any-of? @constant.builtin
|
||||
"_" "after-chdir" "args" "before-chdir" "buildinfo" "nil"
|
||||
"notify-bg-job-success" "num-bg-jobs" "ok" "paths" "pid"
|
||||
"pwd" "value-out-indicator" "version"))
|
||||
|
||||
["$" "@"] @punctuation.special
|
||||
["(" ")" "[" "]" "{" "}"] @punctuation.bracket
|
||||
";" @punctuation.delimiter
|
||||
Reference in New Issue
Block a user