AutoHotkey: Find Previous Match With Ctrl Shift Enter

From TotalcmdWiki
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