rubmz
rubmz

Reputation: 2029

Is there a way in Android Studio to use Ctrl+tab to navigate to recently used editor?

Is there a way in Android Studio to use Ctrl+tab to navigate to recently used editor?

Upvotes: 2

Views: 2853

Answers (3)

Mahmood Al-Turani
Mahmood Al-Turani

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

rubmz
rubmz

Reputation: 2029

Android Studio has two types of switching methods, as can be seen on the keymap settings:

  1. "Recent Editors" - shows a list of recent editors but you need to leave the ctrl key and click up/down keys then another click to select the relevant editor.
  2. "Switcher" - shows a quick list of recent editors. Setting Ctrl+tab to this will behave like many of the other editors in the market: Notepad++, Visual Studio, Eclipse ADT, etc...

Upvotes: 1

Muneesh
Muneesh

Reputation: 463

You can use Ctrl+E to list last opened or edited files, use arrow key to move up and down.

Upvotes: 1

Related Questions