-
-
Save dseeni/2b920eab10376fc0dfbef91ef3e2da85 to your computer and use it in GitHub Desktop.
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 characters
| #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