I'm trying to figure out how it would be more efficient to type a declaration of a collection type with a generic.
Typing:
List<
Automatically expands to:
List<|>
(cursor position is marked with "|")
Typing
List<St|>
using the autocomplete it gets to
List<String|>
notice the cursor position
Now the question: how could it be possible to get to the following state without using the arrow keys:
List<String> |
Ideally, id like to use statement autocompletion for this, but it rather jumps to the new line which is not desired in this situation.