Created
February 2, 2013 02:00
-
-
Save moccos/4695699 to your computer and use it in GitHub Desktop.
[AHK] AutoHotKey script to "fix" Opera's strange keyboard shortcuts.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#IfWinActive ahk_class OperaWindowClass | |
{ | |
^k::Send {F8} ; Search | |
^Tab::Send ^{F6} ; Next tab | |
^PgUp::Send ^{F6} | |
^+Tab::Send ^+{F6} ; Prev tab | |
^PgDn::Send ^+{F6} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment