highlights(bash): highlight "((" "))"

This commit is contained in:
Stephan Seitz 2021-11-27 12:55:59 +01:00
parent 6407d54092
commit 28cc92a2f6
2 changed files with 8 additions and 0 deletions

View file

@ -5,6 +5,8 @@
[
"("
")"
"(("
"))"
"{"
"}"
"["

View file

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