V.11 bug: Selecting more lines in code completion only works when no other parameters are present

Claus Pedersen

Member³
In an editor, I type the code

substr (

After typing the opening parenthesis, I get the following list from code completion:
  • (all)
  • (result)
  • str1
  • pos
  • [len]
I can now use Ctrl or Shift to mark one or more parameters to insert in code. This is by design.

If I have the following code:

substr (str1 => ,

and activate code completion after the comma, I get the following list:
  • (result)
  • str1
  • pos
  • [len]
Note that the entry (all) is missing.
But now I can not mark both "pos" and "len", but I will have to select one parameter, type comma again, activate code completion, and then select the last parameter.

Can this be fixed, so I always can select more values?

Please also correct the bug that you cannot select more rows using Shift and then up or down arrow keys.
It is standard Windows behaviour, that this method can be used to select/mark more items in a list (like 'Shift' and mouse click or 'Ctrl' and mouse click, that works in PLD)
 
Back
Top