AutoHotkey: Copy Selection To Clipboard In Lister

From TotalcmdWiki
Revision as of 10:39, 25 July 2005 by Icfu (talk | contribs)
Jump to navigation Jump to search
; Text you select in the lister is automatically copied to clipboard.
; Adjust the line Send, {RBUTTON}c to match the menu shortcut
; for Ctrl-C in your language file, for example k when using
; a German LNG-file.

~*LButton Up::
Sleep 250
If (WinActive("Lister -") AND A_Cursor="IBeam")
  Send, {RBUTTON}c
Return


Back to AutoHotkey