Another formatter issue. 😉

I think the formatter and comments will never be friends :wink:

Format the following sql script:

VAR name VARCHAR2

BEGIN
   -- Set name
    :name := 'Name';
END;
/

As you can see, the 5th line is indented one blank too many.
If you remove the comment in the line above, it looks like this:

VAR name VARCHAR2

BEGIN
   :name := 'Name';
END;
/

I logged it as QP-4189. Thanks for reporting.

Andre