aboutsummaryrefslogtreecommitdiffstats
path: root/queries/ecma
diff options
context:
space:
mode:
authorStephan Seitz <stephan.seitz@fau.de>2022-12-02 20:22:58 +0100
committerStephan Seitz <stephan.seitz@fau.de>2022-12-02 21:42:11 +0100
commitd6a2ecb8b7093d6f6673cb6748bce9214a5099d3 (patch)
tree787aaf8f5e4b9079bacbdac6e0e8bcb935d5b199 /queries/ecma
parentUpdate lockfile.json (diff)
downloadnvim-treesitter-d6a2ecb8b7093d6f6673cb6748bce9214a5099d3.tar
nvim-treesitter-d6a2ecb8b7093d6f6673cb6748bce9214a5099d3.tar.gz
nvim-treesitter-d6a2ecb8b7093d6f6673cb6748bce9214a5099d3.tar.bz2
nvim-treesitter-d6a2ecb8b7093d6f6673cb6748bce9214a5099d3.tar.lz
nvim-treesitter-d6a2ecb8b7093d6f6673cb6748bce9214a5099d3.tar.xz
nvim-treesitter-d6a2ecb8b7093d6f6673cb6748bce9214a5099d3.tar.zst
nvim-treesitter-d6a2ecb8b7093d6f6673cb6748bce9214a5099d3.zip
highlights: create subscoping for ternary operator
After https://github.com/nvim-treesitter/nvim-treesitter/issues/470, we decided to use `@conditional` for ternary operator instead of operator despite `@conditional` is documented for keywords only. A sub-scoping can make it easier for people to highlight this operator group differently. Also unify the usage of `@conditional...` across languages.
Diffstat (limited to 'queries/ecma')
-rw-r--r--queries/ecma/highlights.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/queries/ecma/highlights.scm b/queries/ecma/highlights.scm
index 377cc43c5..1de0de302 100644
--- a/queries/ecma/highlights.scm
+++ b/queries/ecma/highlights.scm
@@ -185,7 +185,7 @@
] @operator
(binary_expression "/" @operator)
-(ternary_expression ["?" ":"] @conditional)
+(ternary_expression ["?" ":"] @conditional.ternary)
(unary_expression ["!" "~" "-" "+"] @operator)
(unary_expression ["delete" "void" "typeof"] @keyword.operator)