Balid,
I appreciate your continued work, thank you. With that, I feel sorry to inform you that I have another bug report for you
Bug Report
Nested if,then,else conditions can confuse the indentation.
Step 1:
Enter this text:
if a = b
if b = c then d = e
else
f = g
endif
Result:
The code is incorrectly formated, like this:
if a = b
if b = c then d = e
else
f = g
endif
After the
else when you hit return, the carat should align with the line
if a = b. However, it does not. Instead, it aligns with the line above it, seeming to ignore the fact that the
if is terminated with a
then.