aboutsummaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorSteven Xu <stevenxxiu@gmail.com>2025-10-10 20:47:09 +1100
committerChristian Clason <ch.clason+github@icloud.com>2025-10-10 12:53:39 +0200
commitde003000a287c501a6650a1ddd3be80ee34278d4 (patch)
treed9212289599d40b4f7c9750cfe1ceca8b9af8c75 /runtime
parentfeat(inko): update parser for let pattern matching (diff)
downloadnvim-treesitter-de003000a287c501a6650a1ddd3be80ee34278d4.tar
nvim-treesitter-de003000a287c501a6650a1ddd3be80ee34278d4.tar.gz
nvim-treesitter-de003000a287c501a6650a1ddd3be80ee34278d4.tar.bz2
nvim-treesitter-de003000a287c501a6650a1ddd3be80ee34278d4.tar.lz
nvim-treesitter-de003000a287c501a6650a1ddd3be80ee34278d4.tar.xz
nvim-treesitter-de003000a287c501a6650a1ddd3be80ee34278d4.tar.zst
nvim-treesitter-de003000a287c501a6650a1ddd3be80ee34278d4.zip
feat(tmux)!: update parser and highlights
Breaking changes: - Node `(variable)` was renamed to `(expr_double_quotes)`. - Node `(variable_raw)` was renamed to `(expr_single_quotes)`. - Node `(string)` was renamed to `(str_double_quotes)`. - Node `(raw_string)` was renamed to `(str_single_quotes)`. - Node `(raw_string_quote)` was removed.
Diffstat (limited to 'runtime')
-rw-r--r--runtime/queries/tmux/highlights.scm26
1 files changed, 20 insertions, 6 deletions
diff --git a/runtime/queries/tmux/highlights.scm b/runtime/queries/tmux/highlights.scm
index 50da7d7d8..ea98dff06 100644
--- a/runtime/queries/tmux/highlights.scm
+++ b/runtime/queries/tmux/highlights.scm
@@ -1,19 +1,21 @@
-; Comments
(comment) @comment @spell
-; General
[
- (string)
- (raw_string)
+ "'"
+ (str_single_quotes)
+ (str_double_quotes)
] @string
-(int) @number
+(backslash_escape) @string.escape
(path) @string.special.path
+(int) @number
+
[
(option)
(variable_name)
+ (variable_name_short)
] @variable
(command_line_option) @variable.builtin
@@ -21,7 +23,17 @@
((option) @variable.builtin
(#not-lua-match? @variable.builtin "^@"))
-(command) @keyword
+[
+ (if_keyword)
+ (elif_keyword)
+ (else_keyword)
+ (endif_keyword)
+] @keyword.conditional
+
+[
+ (hidden_keyword)
+ (command)
+] @keyword
(source_file_directive
(command) @keyword.import)
@@ -33,6 +45,8 @@
"=" @operator
[
+ ";"
+ "';'"
","
":"
] @punctuation.delimiter