When using ;{ ;} blocks to indent keyword blocks, here's what goes wrong:
Code: Select all
declareModule box
;{
declare message ( tt$,
tx$ )
;}
endDeclareModule
module box
;{
procedure message ( tt$,
tx$ )
;{
messageRequester ( tt$,
tx$ )
;}
endProcedure
;}
endModule
box::message ( "Hello",
"This is a MessageBox." )
When using Ctrl+i to indent, the entire block must be selected for otherwise it won't indent correctly.

Press Ctrl+i to indent the blocks ONLY when selecting the ;{ ;} bracketts, otherwise it will indent too few.

Should be visible. Could this please be fixed?