For example I would like to beautify EX1 UGLY to look like EX2 NICE:
Code: Select all
--EX1 UGLY
signal pattern_match_thres_array_of_arrays_tb: tSTIMARRAY;
signal lfsr_tb : unsigned(30 downto 0);
constant cTRAINING_ARRAY : unsigned(17 downto 0):=o"
--EX 2 NICE
signal pattern_match_thres_array_of_arrays_tb : tSTIMARRAY;
signal lfsr_tb : unsigned(30 downto 0)
constant cTRAINING_ARRAY : unsigned(17 downto 0)
Stated otherwise I would like to add spaces prior to the : so that the :
is always in the same column.
Looking for an efficient REGX or macro trick.
If there were something that performed the behavior:
"Add spaces until character y is in column x on lines that contain z"
I would be happy!
Thanks
Mike