aboutsummaryrefslogtreecommitdiffstats
path: root/tests
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 /tests
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 'tests')
-rw-r--r--tests/query/highlights/fusion/expressions.fusion4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/query/highlights/fusion/expressions.fusion b/tests/query/highlights/fusion/expressions.fusion
index a0b82b511..ae6e2db33 100644
--- a/tests/query/highlights/fusion/expressions.fusion
+++ b/tests/query/highlights/fusion/expressions.fusion
@@ -76,7 +76,7 @@ logic = ${!foo && !(bar || baz) and not 'string'}
// ^operator
ternary = ${ check ? true : false}
-// ^punctuation.delimiter
-// ^punctuation.delimiter
+// ^@conditional.ternary
+// ^@conditional.ternary