Enhancement Request : Beautifier Options Variable declaration

orca777

Member³
Beautifier DECL1 :

Code:
cn_hplf_empfang_bezug CONSTANT t_bezug := 'E';
  cn_hplf_versand_bezug CONSTANT t_bezug := 'V';
  cn_zust_bezug CONSTANT t_bezug := 'Z';
  cn_sepo_bezug CONSTANT t_bezug := 'S';
  cn_efzu_bezug CONSTANT t_bezug := 'B';
This what i liked too DECL2 :

Code:
CN_HPLF_EMPFANG_BEZUG CONSTANT T_BEZUG := 'E';
  CN_HPLF_VERSAND_BEZUG CONSTANT T_BEZUG := 'V';
  CN_ZUST_BEZUG         CONSTANT T_BEZUG := 'Z';
  CN_SEPO_BEZUG         CONSTANT T_BEZUG := 'S';
  CN_EFZU_BEZUG         CONSTANT T_BEZUG := 'B';
You see the aligned Assignment, and ...
i would like to that constants/Type/SubTypes identifiers are uppercased.

DECL2 is much more readable for me!

Carl
 
Back
Top