Skip to content

Instantly share code, notes, and snippets.

@GordonGustafson
Created December 23, 2013 04:10
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save GordonGustafson/8091509 to your computer and use it in GitHub Desktop.
Save GordonGustafson/8091509 to your computer and use it in GitHub Desktop.
#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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment