Code assistant - parameters - enhancement requests

Worker

Member³
1) When using the code assistant to insert function/procedure parameters, the parameter name is followed by " => ". I would like this to be "=>", without spaces, instead. I see that the beautifier also prefers " => ", so perhaps it should be a beautifier option as well.

2) The code assistant does not suggest parameters when the cursor is in the following location:
Code:
foo(
    [#]
It would be nice if it would, since it works just fine in these cases:
Code:
foo([#]

Code:
foo(
    p1=>1,
    [#]
 
Back
Top