osalvador / tePLSQL

PL/SQL Template engine
http://osalvador.github.io/tePLSQL/
MIT License
63 stars 18 forks source link

Methods for in-template indention #46

Closed MikeKutz closed 3 years ago

MikeKutz commented 4 years ago

Need a method(s) for dynamic indention.

eg

procedure do_something( p1 in varchar2
--                    | <- tab to the open-parenthesis irregardless of the length of the name of the procedure
                      ,p2 in varchar2
                      )
as
begin
    null;
end do_something;