I am programming in Harbour.
In my UE configuration I have:
When I have piece of code e.g.
code folding for FUNCTION ends on first RETURN statement (1). How can I achieve that it ends on end of function RETURN (2) statement?
Thanks,
Zeka
In my UE configuration I have:
Code: Select all
/Open Fold Strings = "FUNCTION" "IF" "ELSE"
/Close Fold Strings = "RETURN" "ELSE" "ENDIF"
Code: Select all
FUNCTION Example()
...
IF <condition>
< some statement >
ELSE
RETURN // 1
ENDIF
...
RETURN // 2
Thanks,
Zeka