nvim-treesitter/tests/query/highlights/bash/double-parens.sh
Christian Clason 41913a8d44 feat(bash): update parser
Breaking change: removed double parenthesis as valid opening to
arithmetic expansion. (Only `$((` is allowed according to the manual.)
2025-12-06 14:04:19 +01:00

6 lines
292 B
Bash

if $(( $(tree-sitter parse test/Petalisp/**/*.lisp -q | wc -l) > 2 )); then
# ^ @punctuation.special
# ^ @punctuation.special
# ^ @punctuation.bracket
exit 1
fi