AutoHotkey: Copy Selection To Clipboard In Lister

From TotalcmdWiki
Revision as of 02:30, 24 July 2005 by Icfu (talk | contribs) (new bugfixed version)
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::
If (WinActive("Lister - [") AND A_Cursor="IBeam")
  Send, {RBUTTON}c
Return


Back to AutoHotkey