QB64Team/qb64

Single level of indentation after multiple colon-separated statement openers

dkearns opened this issue · 3 comments

It appears to be a reasonably common style to format nested statements, usually loops, like this:

WHILE 0: WHILE 0
    PRINT "42"
WEND: WEND

Whether this is good style is, hopefully, a question for another day. However, I've noticed that the IDE is currently indenting the contained statement block once for each level of statement nesting.

The aim of this formatting style is presumably to keep things compact so I was wondering if it might be better to use a single level of indentation here?

I noticed this because my inherited legacy code, which uses this style heavily, was formatted with a single indent level.

Thanks,
Doug

You will probably hate what happens with:

FOR i = 1 TO 10
    FOR j = 1 TO 10
        PRINT a
NEXT j, i

I still think it's all behaving as expected.

No, I think that's the only sensible way to format your example (i.e., the indent level should be relative to the line above).

FWIW, having a quick look through my QB64 samples archive I note at least one example in wetspot.bas but you could probably find examples of any formatting you like in that archive.

Changes previously applied with 1e67962 have been reverted until a more stable solution can be found.

Sample code giving issues:

FOR y%% = 0 TO 3: FOR x%% = 0 TO 7
    IF 1 THEN
        PRINT
        END IF
NEXT x%%, y%%