Automatic fill out parameters

Bart

Member²
In our coding standards we use named parameters (which everyone should use is my believe).

It would be very nice if there was some autocomplete functionality which fills out all the parameters of procedure/function/method so I only have to provide the values.

BTW
For parameters, the droplist doesn't seem to work when I code a call as follows (putting the '(' on the next line - which is CDM standard):

Code:
begin
  ...
  pkg_utils.add_country_nr
  (  ==> [ here droplist doesn't function ]
  );
end;
the reason for doing so (that is '(' on next line) is to reduce the width and hence increase readibility - as do names parameters.

Here is works:

Code:
begin
  ...
  pkg_utils.add_country_nr ( ==> [ it works here!]
                           );
end;
regards
Bart.
 
Back
Top