mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-07 05:50:04 -04:00
feat!: drop modules, general refactor and cleanup
This commit is contained in:
parent
c13e28f894
commit
2c8f2f2fad
829 changed files with 4905 additions and 8010 deletions
70
runtime/queries/elvish/highlights.scm
Normal file
70
runtime/queries/elvish/highlights.scm
Normal file
|
|
@ -0,0 +1,70 @@
|
|||
(comment) @comment
|
||||
|
||||
["if" "elif"] @conditional
|
||||
(if (else "else" @conditional))
|
||||
|
||||
["while" "for"] @repeat
|
||||
(while (else "else" @repeat))
|
||||
(for (else "else" @repeat))
|
||||
|
||||
["try" "catch" "finally"] @exception
|
||||
(try (else "else" @exception))
|
||||
|
||||
"use" @include
|
||||
(import (bareword) @string.special)
|
||||
|
||||
(wildcard ["*" "**" "?"] @character.special)
|
||||
|
||||
(command argument: (bareword) @parameter)
|
||||
(command head: (identifier) @function.call)
|
||||
((command head: (identifier) @keyword.return)
|
||||
(#eq? @keyword.return "return"))
|
||||
((command (identifier) @keyword.operator)
|
||||
(#any-of? @keyword.operator "and" "or" "coalesce"))
|
||||
[
|
||||
"+" "-" "*" "/" "%" "<" "<=""==" "!=" ">"
|
||||
">=" "<s" "<=s" "==s" "!=s" ">s" ">=s"
|
||||
] @function.builtin
|
||||
|
||||
[">" "<" ">>" "<>" "|"] @operator
|
||||
|
||||
(io_port) @number
|
||||
|
||||
(function_definition
|
||||
"fn" @keyword.function
|
||||
(identifier) @function)
|
||||
|
||||
(parameter_list) @parameter
|
||||
(parameter_list "|" @punctuation.bracket)
|
||||
|
||||
["var" "set" "tmp" "del"] @keyword
|
||||
(variable_declaration
|
||||
(lhs (identifier) @variable))
|
||||
|
||||
(variable_assignment
|
||||
(lhs (identifier) @variable))
|
||||
|
||||
(temporary_assignment
|
||||
(lhs (identifier) @variable))
|
||||
|
||||
(variable_deletion
|
||||
(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
|
||||
2
runtime/queries/elvish/injections.scm
Normal file
2
runtime/queries/elvish/injections.scm
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
((comment) @injection.content
|
||||
(#set! injection.language "comment"))
|
||||
Loading…
Add table
Add a link
Reference in a new issue