How can I switch between opened windows in Eclipse? There is Ctrl+F6, but it\'s asking me which one I want, but I want switch it like tabs in browser o
3 line AutoHotKey script (on Windows, anyway):
#IfWinActive ahk_class SWT_Window0 ^+Tab::^PgUp ^Tab::^PgDn
Put this in your startup folder (save it as *.ahk, must have AutoHotKey installed) and Eclipse tabs will now work like Chrome or Firefox.