In Android studio, we have auto completion by Gemini as follows:
In VSCode I am subscribed to Copilot, and I have a feature that allows me to scroll through the suggestions of the autocompletion.
For instance, if I didn’t like the autocompletion suggesion of:
for(i in test) {
println(i)
}
I want to press a keyboard shortcut on my keyboard such as Ctrl + [
to see another suggestion, and if I want to go back I press Ctrl + ]
. Then once I like the suggestion I press Tab
.
- Do we have this feature in Android studio?
- What is the keyboard shortcut for this?
- and how can we customize this shortcut?