OS: Ubuntu 14.04
Version: Sublime Text Build 3083
When using case statements and syntax is set to bash, reindenting the file results in case statements looking like this: (indentation is small because I set tab to 2 spaces, but it reacts the same on a fresh install)
case "${flag}" in
n) noInstall='true' ;;
u) autoUpdate='true' ;;
f) forseLN='true' ;;
*) error "Unexpected option ${flag}" ;;
esac
While they should look like this:
case "${flag}" in
n) noInstall='true' ;;
u) autoUpdate='true' ;;
f) forseLN='true' ;;
*) error "Unexpected option ${flag}" ;;
esac
There are many other examples of this (I can provide more) in my code, and a fresh install has the same problem. Is there any way to fix this?
My configuration: here
Thanks!
OS: Ubuntu 14.04
Version: Sublime Text Build 3083
When using case statements and syntax is set to bash, reindenting the file results in case statements looking like this: (indentation is small because I set tab to 2 spaces, but it reacts the same on a fresh install)
While they should look like this:
There are many other examples of this (I can provide more) in my code, and a fresh install has the same problem. Is there any way to fix this?
My configuration: here
Thanks!