AutoHotkey: Find Previous Match With Ctrl Shift Enter

From TotalcmdWiki
Revision as of 13:52, 11 June 2007 by Icfu (talk | contribs)
(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