I use UEStudio since 2012 and I made some adaptations to work with Harbour and FiveWin. I searched in this forum several times a solution for folds control since the language of harbor has breaks because of the RETURNs.
So I decided to change and I achieved this result that is satisfactory.
More rules to make the code to work correctly.
For this to work, include some Ignore Fold Strings
Download Harbour_Fwh.7z
So I decided to change and I achieved this result that is satisfactory.
More rules to make the code to work correctly.
For this to work, include some Ignore Fold Strings
Code: Select all
FUNCTION TEST(Par)
IF Par == 1
RETURN .F. // Fold will not be broken because RETURN has spaces
ENDIF
DO CASE
CASE Par == 2
FUN_PROCESS()
CASE Par == 3
OTHER_OPTION()
CASE Par == 4
MORE()
END CASE
RETURN NIL // Fold closed properly in function
- Harbour_Fwh.7z (14.11 KiB) 51