foxundermoon / vs-shell-format

the shellscript、Dockerfile、properties ...... format extension
MIT License
445 stars 47 forks source link

Bug: case #371

Open Malix-Labs opened 9 months ago

Malix-Labs commented 9 months ago
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
TheGardenMonkey commented 6 months ago

Anyone find a workaround for this?