mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 11:06:54 -04:00
feat(bash): update parser
Breaking change: removed double parenthesis as valid opening to arithmetic expansion. (Only `$((` is allowed according to the manual.)
This commit is contained in:
parent
596923959a
commit
41913a8d44
2 changed files with 5 additions and 5 deletions
|
|
@ -1,6 +1,6 @@
|
|||
if (( $(tree-sitter parse test/Petalisp/**/*.lisp -q | wc -l) > 2 )); then
|
||||
# ^ @punctuation.special
|
||||
# ^ @punctuation.special
|
||||
# ^ @punctuation.bracket
|
||||
if $(( $(tree-sitter parse test/Petalisp/**/*.lisp -q | wc -l) > 2 )); then
|
||||
# ^ @punctuation.special
|
||||
# ^ @punctuation.special
|
||||
# ^ @punctuation.bracket
|
||||
exit 1
|
||||
fi
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue