jeff-hykin / better-shell-syntax

💾 📦 ♻️ An improvement to the shell syntax for VS Code
MIT License
50 stars 4 forks source link

Not recognizing the color being the same with the ;& operator in a switch/case statement. #63

Closed emp4506 closed 9 months ago

emp4506 commented 12 months ago

Type: Bug

example in bash 4.0 or later, im in a WSL workspace aswell:

case $1 in build_all) make all

;& is a fall through operator that should be recognized by VSCode's syntax as a

# valid operator but it is whining at me saying there is wrong syntax
;&

debug) make all debug=yes ;; *) make all ;; esac