Synchronize spec and body feature request

Hello!

I would like to ask you to realize the possibility of synchronization specification and the package body, as is done in sqdeveloper from Oracle. Very useful and helpful feature is
 
Last edited:
If I declare a function or procedure in the spec, I'd like the option to create the skeleton in the body, e.g., if I type the following

Code:
procedure foo(bar in number);

I'd like to be able to right-click and pick an option that would create

Code:
procedure foo(bar in number) is
begin
  null;
end;

(or similar) in the body
 
Back
Top