diff options
| author | Stephan Seitz <stephan.seitz@fau.de> | 2022-12-02 20:22:58 +0100 |
|---|---|---|
| committer | Stephan Seitz <stephan.seitz@fau.de> | 2022-12-02 21:42:11 +0100 |
| commit | d6a2ecb8b7093d6f6673cb6748bce9214a5099d3 (patch) | |
| tree | 787aaf8f5e4b9079bacbdac6e0e8bcb935d5b199 /queries/vim | |
| parent | Update lockfile.json (diff) | |
| download | nvim-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/vim')
| -rw-r--r-- | queries/vim/highlights.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/queries/vim/highlights.scm b/queries/vim/highlights.scm index 239b0a0b3..ce25b13b9 100644 --- a/queries/vim/highlights.scm +++ b/queries/vim/highlights.scm @@ -271,7 +271,7 @@ ":" ] @punctuation.delimiter -(ternary_expression ["?" ":"] @conditional) +(ternary_expression ["?" ":"] @conditional.ternary) ; Options ((set_value) @number |
