vs-shell-format
vs-shell-format copied to clipboard
Bug: case
case variable in
case1)
echo case1
;;
case2)
echo case2
;;
case3)
echo case3
;;
esac
gets formated to
case variable in
case1)
echo case1
;;
case2)
echo case2
;;
case3)
echo case3
;;
esac
Anyone find a workaround for this?