aboutsummaryrefslogtreecommitdiff
path: root/runtime/queries
diff options
context:
space:
mode:
authorpancake2022-05-28 19:46:10 +0000
committerGitHub2022-05-28 19:46:10 +0000
commit7706a4a0d8b67b943c31d0c5f7b00d357b5d838d (patch)
tree6187119a83bee752282c2a47f378c99a01f70d76 /runtime/queries
parent7c107d0d3ac163139d9616cdbc4fb021cca6d20d (diff)
Add Vlang tree-sitter in the languages.toml (#2526)
Co-authored-by: pancake <pancake@nopcode.org> Co-authored-by: Michael Davis <mcarsondavis@gmail.com>
Diffstat (limited to 'runtime/queries')
-rw-r--r--runtime/queries/v/highlights.scm150
1 files changed, 150 insertions, 0 deletions
diff --git a/runtime/queries/v/highlights.scm b/runtime/queries/v/highlights.scm
new file mode 100644
index 00000000..c71245dc
--- /dev/null
+++ b/runtime/queries/v/highlights.scm
@@ -0,0 +1,150 @@
+(parameter_declaration
+ name: (identifier) @variable.parameter)
+(function_declaration
+ name: (identifier) @function)
+(function_declaration
+ receiver: (parameter_list)
+ name: (identifier) @function.method)
+
+(call_expression
+ function: (identifier) @function)
+(call_expression
+ function: (selector_expression
+ field: (identifier) @function.method))
+
+(field_identifier) @variable.other.member
+(selector_expression
+ field: (identifier) @variable.other.member)
+
+(int_literal) @constant.numeric.integer
+(interpreted_string_literal) @string
+(rune_literal) @string
+(escape_sequence) @constant.character.escape
+
+[
+ (type_identifier)
+ (builtin_type)
+ (pointer_type)
+ (array_type)
+] @type
+
+[
+ (identifier)
+ (module_identifier)
+ (import_path)
+] @variable
+
+[
+ "as"
+ "asm"
+ "assert"
+ ;"atomic"
+ ;"break"
+ "const"
+ ;"continue"
+ "defer"
+ "else"
+ "enum"
+ "fn"
+ "for"
+ "$for"
+ "go"
+ "goto"
+ "if"
+ "$if"
+ "import"
+ "in"
+ "!in"
+ "interface"
+ "is"
+ "!is"
+ "lock"
+ "match"
+ "module"
+ "mut"
+ "or"
+ "pub"
+ "return"
+ "rlock"
+ "select"
+ ;"shared"
+ ;"static"
+ "struct"
+ "type"
+ ;"union"
+ "unsafe"
+] @keyword
+
+[
+ (true)
+ (false)
+] @boolean
+
+[
+ "."
+ ","
+ ":"
+ ";"
+] @punctuation.delimiter
+
+[
+ "("
+ ")"
+ "{"
+ "}"
+ "["
+ "]"
+] @punctuation.bracket
+
+(array) @punctuation.bracket
+
+[
+ "++"
+ "--"
+
+ "+"
+ "-"
+ "*"
+ "/"
+ "%"
+
+ "~"
+ "&"
+ "|"
+ "^"
+
+ "!"
+ "&&"
+ "||"
+ "!="
+
+ "<<"
+ ">>"
+
+ "<"
+ ">"
+ "<="
+ ">="
+
+ "+="
+ "-="
+ "*="
+ "/="
+ "&="
+ "|="
+ "^="
+ "<<="
+ ">>="
+
+ "="
+ ":="
+ "=="
+
+ "?"
+ "<-"
+ "$"
+ ".."
+ "..."
+] @operator
+
+(comment) @comment \ No newline at end of file