hotchpotch (owner)

Revisions

gist: 58516 Download_button fork
public
Description:
Firefox のウィンドウにうつったら一度 Esc をぜったいおくる
Public Clone URL: git://gist.github.com/58516.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
9
10
11
Loop
{
  WinWaitActive, ahk_class MozillaUIWindowClass
  WinGetActiveTitle, Title
  IfInString, Title, Vimperator, {
    ControlSend,,{Esc}
  }
  WinWaitNotActive, ahk_class MozillaUIWindowClass
}