mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
feat(treesitter): add viml parser and queries
This commit is contained in:
parent
6254b0fd3b
commit
e85b8aa768
@ -211,6 +211,9 @@ set(TREESITTER_C_SHA256 af66fde03feb0df4faf03750102a0d265b007e5d957057b6b293c131
|
|||||||
set(TREESITTER_LUA_URL https://github.com/MunifTanjim/tree-sitter-lua/archive/v0.0.12.tar.gz)
|
set(TREESITTER_LUA_URL https://github.com/MunifTanjim/tree-sitter-lua/archive/v0.0.12.tar.gz)
|
||||||
set(TREESITTER_LUA_SHA256 b6d7c6d04e9101a2e589d25f1d61668301e776c0b8defa6eae8dd86272e9e7c3)
|
set(TREESITTER_LUA_SHA256 b6d7c6d04e9101a2e589d25f1d61668301e776c0b8defa6eae8dd86272e9e7c3)
|
||||||
|
|
||||||
|
set(TREESITTER_VIM_URL https://github.com/vigoux/tree-sitter-viml/archive/v0.1.0.tar.gz)
|
||||||
|
set(TREESITTER_VIM_SHA256 ea64fa211ccc7197669017b55911fdb56e8d4b6de96ba25c32b9586ec1c4f4c5)
|
||||||
|
|
||||||
set(TREESITTER_URL https://github.com/tree-sitter/tree-sitter/archive/v0.20.7.tar.gz)
|
set(TREESITTER_URL https://github.com/tree-sitter/tree-sitter/archive/v0.20.7.tar.gz)
|
||||||
set(TREESITTER_SHA256 b355e968ec2d0241bbd96748e00a9038f83968f85d822ecb9940cbe4c42e182e)
|
set(TREESITTER_SHA256 b355e968ec2d0241bbd96748e00a9038f83968f85d822ecb9940cbe4c42e182e)
|
||||||
|
|
||||||
|
@ -27,3 +27,4 @@ endfunction()
|
|||||||
|
|
||||||
BuildTSParser(c ${TREESITTER_C_URL} ${TREESITTER_C_SHA256} TreesitterParserCMakeLists.txt)
|
BuildTSParser(c ${TREESITTER_C_URL} ${TREESITTER_C_SHA256} TreesitterParserCMakeLists.txt)
|
||||||
BuildTSParser(lua ${TREESITTER_LUA_URL} ${TREESITTER_LUA_SHA256} TreesitterParserCMakeLists.txt)
|
BuildTSParser(lua ${TREESITTER_LUA_URL} ${TREESITTER_LUA_SHA256} TreesitterParserCMakeLists.txt)
|
||||||
|
BuildTSParser(vim ${TREESITTER_VIM_URL} ${TREESITTER_VIM_SHA256} TreesitterParserCMakeLists.txt)
|
||||||
|
245
runtime/queries/vim/highlights.scm
Normal file
245
runtime/queries/vim/highlights.scm
Normal file
@ -0,0 +1,245 @@
|
|||||||
|
(identifier) @variable
|
||||||
|
((identifier) @constant
|
||||||
|
(#lua-match? @constant "^[A-Z][A-Z_0-9]*$"))
|
||||||
|
|
||||||
|
;; Keywords
|
||||||
|
|
||||||
|
[
|
||||||
|
"if"
|
||||||
|
"else"
|
||||||
|
"elseif"
|
||||||
|
"endif"
|
||||||
|
] @conditional
|
||||||
|
|
||||||
|
[
|
||||||
|
"try"
|
||||||
|
"catch"
|
||||||
|
"finally"
|
||||||
|
"endtry"
|
||||||
|
"throw"
|
||||||
|
] @exception
|
||||||
|
|
||||||
|
[
|
||||||
|
"for"
|
||||||
|
"endfor"
|
||||||
|
"in"
|
||||||
|
"while"
|
||||||
|
"endwhile"
|
||||||
|
"break"
|
||||||
|
"continue"
|
||||||
|
] @repeat
|
||||||
|
|
||||||
|
[
|
||||||
|
"function"
|
||||||
|
"endfunction"
|
||||||
|
] @keyword.function
|
||||||
|
|
||||||
|
;; Function related
|
||||||
|
(function_declaration name: (_) @function)
|
||||||
|
(call_expression function: (identifier) @function)
|
||||||
|
(parameters (identifier) @parameter)
|
||||||
|
(default_parameter (identifier) @parameter)
|
||||||
|
|
||||||
|
[ (bang) (spread) (at) ] @punctuation.special
|
||||||
|
|
||||||
|
[ (no_option) (inv_option) (default_option) (option_name) ] @variable.builtin
|
||||||
|
[
|
||||||
|
(scope)
|
||||||
|
"a:"
|
||||||
|
"$"
|
||||||
|
] @namespace
|
||||||
|
|
||||||
|
;; Commands and user defined commands
|
||||||
|
|
||||||
|
[
|
||||||
|
"let"
|
||||||
|
"unlet"
|
||||||
|
"const"
|
||||||
|
"call"
|
||||||
|
"execute"
|
||||||
|
"normal"
|
||||||
|
"set"
|
||||||
|
"setlocal"
|
||||||
|
"silent"
|
||||||
|
"echo"
|
||||||
|
"echomsg"
|
||||||
|
"autocmd"
|
||||||
|
"augroup"
|
||||||
|
"return"
|
||||||
|
"syntax"
|
||||||
|
"lua"
|
||||||
|
"ruby"
|
||||||
|
"perl"
|
||||||
|
"python"
|
||||||
|
"highlight"
|
||||||
|
"command"
|
||||||
|
"delcommand"
|
||||||
|
"comclear"
|
||||||
|
"colorscheme"
|
||||||
|
"startinsert"
|
||||||
|
"stopinsert"
|
||||||
|
"global"
|
||||||
|
"runtime"
|
||||||
|
"wincmd"
|
||||||
|
"cnext"
|
||||||
|
"cprevious"
|
||||||
|
"cNext"
|
||||||
|
"vertical"
|
||||||
|
"leftabove"
|
||||||
|
"aboveleft"
|
||||||
|
"rightbelow"
|
||||||
|
"belowright"
|
||||||
|
"topleft"
|
||||||
|
"botright"
|
||||||
|
(unknown_command_name)
|
||||||
|
] @keyword
|
||||||
|
(map_statement cmd: _ @keyword)
|
||||||
|
(command_name) @function.macro
|
||||||
|
|
||||||
|
;; Syntax command
|
||||||
|
|
||||||
|
(syntax_statement (keyword) @string)
|
||||||
|
(syntax_statement [
|
||||||
|
"enable"
|
||||||
|
"on"
|
||||||
|
"off"
|
||||||
|
"reset"
|
||||||
|
"case"
|
||||||
|
"spell"
|
||||||
|
"foldlevel"
|
||||||
|
"iskeyword"
|
||||||
|
"keyword"
|
||||||
|
"match"
|
||||||
|
"cluster"
|
||||||
|
"region"
|
||||||
|
] @keyword)
|
||||||
|
|
||||||
|
(syntax_argument name: _ @keyword)
|
||||||
|
|
||||||
|
[
|
||||||
|
"<buffer>"
|
||||||
|
"<nowait>"
|
||||||
|
"<silent>"
|
||||||
|
"<script>"
|
||||||
|
"<expr>"
|
||||||
|
"<unique>"
|
||||||
|
] @constant.builtin
|
||||||
|
|
||||||
|
(hl_attribute
|
||||||
|
key: _ @property
|
||||||
|
val: _ @constant)
|
||||||
|
|
||||||
|
(hl_group) @variable
|
||||||
|
(augroup_name) @namespace
|
||||||
|
|
||||||
|
(au_event) @constant
|
||||||
|
(normal_statement (commands) @constant)
|
||||||
|
|
||||||
|
;; Highlight command
|
||||||
|
|
||||||
|
(highlight_statement [
|
||||||
|
"default"
|
||||||
|
"link"
|
||||||
|
"clear"
|
||||||
|
] @keyword)
|
||||||
|
|
||||||
|
;; Command command
|
||||||
|
|
||||||
|
(command_attribute
|
||||||
|
name: _ @property
|
||||||
|
val: (behavior
|
||||||
|
name: _ @constant
|
||||||
|
val: (identifier)? @function)?)
|
||||||
|
|
||||||
|
;; Runtime command
|
||||||
|
|
||||||
|
(runtime_statement (where) @keyword.operator)
|
||||||
|
|
||||||
|
;; Colorscheme command
|
||||||
|
|
||||||
|
(colorscheme_statement (name) @string)
|
||||||
|
|
||||||
|
;; Literals
|
||||||
|
|
||||||
|
(string_literal) @string
|
||||||
|
(integer_literal) @number
|
||||||
|
(float_literal) @float
|
||||||
|
(comment) @comment
|
||||||
|
(pattern) @string.special
|
||||||
|
(pattern_multi) @string.regex
|
||||||
|
(filename) @string
|
||||||
|
(heredoc (body) @string)
|
||||||
|
((heredoc (parameter) @keyword))
|
||||||
|
((scoped_identifier
|
||||||
|
(scope) @_scope . (identifier) @boolean)
|
||||||
|
(#eq? @_scope "v:")
|
||||||
|
(#any-of? @boolean "true" "false"))
|
||||||
|
|
||||||
|
;; Operators
|
||||||
|
|
||||||
|
[
|
||||||
|
"||"
|
||||||
|
"&&"
|
||||||
|
"&"
|
||||||
|
"+"
|
||||||
|
"-"
|
||||||
|
"*"
|
||||||
|
"/"
|
||||||
|
"%"
|
||||||
|
".."
|
||||||
|
"is"
|
||||||
|
"isnot"
|
||||||
|
"=="
|
||||||
|
"!="
|
||||||
|
">"
|
||||||
|
">="
|
||||||
|
"<"
|
||||||
|
"<="
|
||||||
|
"=~"
|
||||||
|
"!~"
|
||||||
|
"="
|
||||||
|
"+="
|
||||||
|
"-="
|
||||||
|
"*="
|
||||||
|
"/="
|
||||||
|
"%="
|
||||||
|
".="
|
||||||
|
"..="
|
||||||
|
] @operator
|
||||||
|
|
||||||
|
; Some characters have different meanings based on the context
|
||||||
|
(unary_operation "!" @operator)
|
||||||
|
(binary_operation "." @operator)
|
||||||
|
|
||||||
|
;; Punctuation
|
||||||
|
|
||||||
|
[
|
||||||
|
"("
|
||||||
|
")"
|
||||||
|
"{"
|
||||||
|
"}"
|
||||||
|
"["
|
||||||
|
"]"
|
||||||
|
] @punctuation.bracket
|
||||||
|
|
||||||
|
(field_expression "." @punctuation.delimiter)
|
||||||
|
|
||||||
|
[
|
||||||
|
","
|
||||||
|
":"
|
||||||
|
] @punctuation.delimiter
|
||||||
|
|
||||||
|
(ternary_expression ["?" ":"] @conditional)
|
||||||
|
|
||||||
|
; Options
|
||||||
|
((set_value) @number
|
||||||
|
(#match? @number "^[0-9]+(\.[0-9]+)?$"))
|
||||||
|
|
||||||
|
((set_item
|
||||||
|
option: (option_name) @_option
|
||||||
|
value: (set_value) @function)
|
||||||
|
(#any-of? @_option
|
||||||
|
"tagfunc" "tfu"
|
||||||
|
"completefunc" "cfu"
|
||||||
|
"omnifunc" "ofu"
|
||||||
|
"operatorfunc" "opfunc"))
|
Loading…
Reference in New Issue
Block a user