Claus Pedersen
Member³
In version 10, the code completion has been added an (all) option.
When this is used, all parameters are filled in, including the last closing paranthesis.
In the beta forum, I have reported some errors regarding this, but they are still present in the current version 10:
1) Using (all) after the opening paranthesis in the following code:
will add a closing paranthesis after the parameters, even if the closing paranthesis has already been typed in line two.
2) Using (all) before the block comment in the following code will still apply a closing paranthesis, even if it is already present on the same line:
3) Applying code assistant before the closing paranthesis (after the block comment) in the code example above does not work at all. If a space is added before the closing paranthesis, code assistant will work.
When this is used, all parameters are filled in, including the last closing paranthesis.
In the beta forum, I have reported some errors regarding this, but they are still present in the current version 10:
1) Using (all) after the opening paranthesis in the following code:
Code:
myMethod (
);
2) Using (all) before the block comment in the following code will still apply a closing paranthesis, even if it is already present on the same line:
Code:
myMethod (/*a remark*/);
3) Applying code assistant before the closing paranthesis (after the block comment) in the code example above does not work at all. If a space is added before the closing paranthesis, code assistant will work.