Eclipse HotKey: how to switch between tabs?

后端 未结 22 1313
情书的邮戳
情书的邮戳 2020-11-28 17:10

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

22条回答
  •  一向
    一向 (楼主)
    2020-11-28 17:36

    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.

提交回复
热议问题