Skip to content

Instantly share code, notes, and snippets.

@moccos
Created February 2, 2013 02:00
Show Gist options
  • Save moccos/4695699 to your computer and use it in GitHub Desktop.
Save moccos/4695699 to your computer and use it in GitHub Desktop.
[AHK] AutoHotKey script to "fix" Opera's strange keyboard shortcuts.
#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