Beautifier alignment

mike

Member³
If I remember correctly, prior versions of the beautifier lined up exceptions with the other types. In my opinion, it looked better when they lined up. Now, it's kind of all over the place.

Code:
l_start_date          DATE;
      l_end_date            DATE;
      l_time_period_id      NUMBER;
      l_prev_time_period_id NUMBER;
      already_processed EXCEPTION;
      in_started_status EXCEPTION;
      l_number_already_processed NUMBER;
      l_prev_pp_processed        VARCHAR2(1);
      prev_pp_unprocessed EXCEPTION;
      l_email_addr per_all_people_f.email_address%TYPE;
 
Last edited:
I checked this and exceptions have always been aligned separately. If you group them, this will look fine. If you mix them with variables like above, it will not look so great.

I have added this to the list of enhancement requests.
 
Back
Top