Reputation: 2029
Is there a way in Android Studio to use Ctrl+tab to navigate to recently used editor?
Upvotes: 2
Views: 2853
Reputation: 46
Ctrl + tab is already doing that! it shows the switcher having the most recently used editor highlighted, after releasing Ctrl key it will switch to the editor, if you keep holding the Ctrl then there are 2 ways to navigate through the switcher, either by Tab, or by up and down arrows with Enter.
Another way is Navigate-> Back/Forward which will move cursor between edit locations in same file and move along to other files, the default key mapping for those are (Alt +Ctrl + Left)/(Alt +Ctrl +Right), which conflicts with windows mapping, Personally I am using Eclipse key mapping, so they are (Alt + left)/(Alt + right).
Don't forget that you can change any key mapping or add an extra key mapping from File->Settings->Keymap
Upvotes: 0
Reputation: 2029
Android Studio has two types of switching methods, as can be seen on the keymap settings:
Upvotes: 1
Reputation: 463
You can use Ctrl+E to list last opened or edited files, use arrow key to move up and down.
Upvotes: 1