UltraEdit 21.00.0.1030
Hi,
I tried code folding in Autolisp, but it seems not to work.
Here is the section from UEW (downloaded from the download page)
Here is Autolisp pseudo code, and all blocks should be folded:
Is it possible to get the "+" and "-" sign on the left site for each "defun / progn / if"?
Thanks
Peter
Hi,
I tried code folding in Autolisp, but it seems not to work.
Here is the section from UEW (downloaded from the download page)
Code: Select all
/L9"AutoLISP" Line Comment = ; Block Comment On = ;| Block Comment Off = |; Escape Char = \ Nocase String Chars = " File Extensions = LSP MNL SCR PRP PRV XBS SHP MNU ISS
/TGBegin "Commands"
/TGFindStr = "(defun +c:^([~)]+^)("
/TGEnd
/TGBegin "Functions"
/TGFindStr = "(defun +^([~)]+^)("
/TGBegin "Arguments"
/TGFindStr = "[ ^t^p^n^r]++^([~ ]+^)"
/TGFindBStart = "(defun +^([~)]+^)("
/TGFindBEnd = "^{/^}^{)^}"
/TGEnd
/TGEnd
/Delimiters = '() "
/Indent Strings = "("
/Unindent Strings = ")"
/Open Brace Strings = "("
/Close Brace Strings = ")"
/Open Fold Strings = "(progn" "(if" -->> that's modified, original was "("
/Close Fold Strings = ")"
Code: Select all
(defun c:test ()
(if something
(progn
(step1)
(step2)
)
(progn
(step3)
(step4)
)
)
)
Thanks
Peter
UE 26.20.0.74 German / Win 10 x 64 Pro