Code Assistant Enhancement Request

mike

Member³
When I type a "(" after a procedure name, the code assistant brings up a list of parameters to choose from. That's nice.

I think it would be even nicer if I would be able to select all of them at once, or be able to select the ones I want and end up with:

package.procedure(param1 =>
,param2 =>
,param3 =>
etc.

Some procedures have a lot of parameters and take a long time!

Thanks for considering,

Mike
 
@mike: Until the request list is decimated, you can right-click on the procedure name and select Test. In the test window that opens, you copy-paste the procedure call incl. parameters. The test window is closed. The code is copy-paste'd into your code.

A bit more work, but you get a quick shell that you can work on.

Besides of that, I second to both of the posts above
 
I want this feature also with already written code without the named parameters.

For example:
(before)

Code:
procedure Test ('Good', 'Idea');
(After)

Code:
procedure Test (Param1 => 'Good',
                Param2 => 'Idea');
Roeland
 
Back
Top