As I would prefer to keep the intending working another approach is to have the ; on its own line in the left margin:
libname epdbprd
oracle
user = eppuser
pass = Coffee1820
path = EPDBPROD
schema = eptsprd
;
This way you can easily align your multiple parameters (or WHEN statments, or plot options or...) but the next line will start on theleft.
Also you you may find that backspace will undo levels of indenting by the increment set in many places
if some condition then do;
statment;
if other condition do;
statement; /*use tab for one level of indent*/
statement; /*After entering this line use backspace*/
end; /* and the "end" aligns with the IF*/
else do;
statement;
statement;
statement;
end;
end;
but the auto indent has to be set for that to work.
... View more