AutoHotkey: Find Previous Match With Ctrl Shift Enter

From TotalcmdWiki
Revision as of 11:23, 31 May 2008 by White (talk | contribs) (Added category AutoHotkey scripts)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

By default Ctrl+Enter finds the next match in quick search and CD tree. This scripts assigns "find previous match" functionality to Ctrl+Shift+Enter.

#IfWinactive, ahk_class TCHANGETREEDLG
^+Enter::SendInput, ^{Up}
#IfWinactive, ahk_class TQUICKSEARCH
^+Enter::SendInput, ^{Up}

Back to AutoHotkey