In a SQL Window the PL-SQL formatter indents the next SELECT statement. In the following example the 1st SELECT with get indented.

Code
DECLARE
  r INTEGER;
BEGIN
  r := 1;
END;
/

SELECT 1 FROM dual;

SELECT 1 FROM dual;


Fair Bits...
Felix A. Hernandez