My code template is the following:
test( $a = ${null}, $b = ${null} );
When I call it, the first selection, $a will be equal to null.
After editing this value, the second variable, $b is also changing to the same value at the same time.
It is possible make it independent?
You can also type default=”default value” after your variable name, like this:
This solution worked for me, and I found it browsing the predefined code templates. They are very helpful, and self explanatory.