Docs "Code folding Allow groups of lines in a document to be collapsed for easier navigation/editing. Fold/Unfold all children of a fold point Whether to fold/unfold all child fold points when a parent line is folded."
I have code like this everywhere if ($this==0) { warn "hello"; } else { warn "bye"; }
But when I collapse the if statement the else get collapsed too, but if I do this
if ($this==0) { warn "hello"; } else { warn "bye"; }
it works,
any suggestions? beside reformatting? can geany support my code layout?
Thanks
Josh