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

From TotalcmdWiki
Jump to navigation Jump to search
(new bugfixed version)
mNo edit summary
Line 4: Line 4:
  ; a German LNG-file.
  ; a German LNG-file.
   
   
  *~LButton Up::
  ~*LButton Up::
  If (WinActive("Lister - [") AND A_Cursor="IBeam")
Sleep 250
   Send, {RBUTTON}c
  If (WinActive("Lister -") AND A_Cursor="IBeam")
   Send, {RBUTTON}k
  Return
  Return




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

Revision as of 10:38, 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}k
Return


Back to AutoHotkey