You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
So, what is the status of the issue? Is there any workaround? This bug can really "make one mad"; I heavily use case ... esac in bash for parsing arguments, so after applying "reindent" the indentation in my file is completely broken.
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!
The text was updated successfully, but these errors were encountered: