Created
December 23, 2013 04:10
-
-
Save GordonGustafson/8091509 to your computer and use it in GitHub Desktop.
Revisions
-
GordonGustafson created this gist
Dec 23, 2013 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,108 @@ #IfWinActive ahk_class AcrobatSDIWindow h:: if (inAcrobatSearchMode) Send h else Send {Left} return j:: if (inAcrobatSearchMode) Send j else Send {Down} return k:: if (inAcrobatSearchMode) Send k else Send {Up} return l:: if (inAcrobatSearchMode) Send l else Send {Right} return n:: if (inAcrobatSearchMode) Send n else Send {F3}{Esc} return +n:: if (inAcrobatSearchMode) Send N else Send +{F3}{Esc} return +g:: if (inAcrobatSearchMode) Send G else Send {End} return ; see http://stackoverflow.com/questions/1794258/detect-a-double-key-press-in-autohotkey g:: if (inAcrobatSearchMode) Send g else { if (A_PriorHotkey <> "g" or A_TimeSincePriorHotkey > 400) { ; Too much time between presses, so this isn't a double-press. KeyWait, g return } Send {Home} } return /:: if (inAcrobatSearchMode) Send / else { inAcrobatSearchMode := true Send ^f } return Esc:: inAcrobatSearchMode := false Send {Esc} return ^[:: inAcrobatSearchMode := false Send {Esc} return Enter:: if (inAcrobatSearchMode) { inAcrobatSearchMode := false } Send {Enter} return ;go back into normal mode after scrolling with any control command ^e:: inAcrobatSearchMode := false Send {Esc}{Down} return ^y:: inAcrobatSearchMode := false Send {Esc}{Up} return ^f:: inAcrobatSearchMode := false Send {Esc}{PgDn} return ^b:: inAcrobatSearchMode := false Send {Esc}{PgUp} return #IfWinActive