AutoHotkey: Copy Selection To Clipboard In Lister: Difference between revisions

From TotalcmdWiki
Jump to navigation Jump to search
mNo edit summary
No edit summary
Line 7: Line 7:
  Sleep 250
  Sleep 250
  If (WinActive("Lister -") AND A_Cursor="IBeam")
  If (WinActive("Lister -") AND A_Cursor="IBeam")
   Send, {RBUTTON}k
   Send, {RBUTTON}c
  Return
  Return




Back to [[AutoHotkey]]
Back to [[AutoHotkey]]

Revision as of 10:39, 25 July 2005

; 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