AutoHotkey: Start Notepad In Lister: Difference between revisions

From TotalcmdWiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 1: Line 1:
; Pressing F4 in TC Lister starts Notepad with the active document
Pressing F4 in TC Lister starts Notepad with the active document.
  ; If you want to start a different editor exchange the line containing '''''notepad.exe'''''
 
  ; If you want to start an alternative editor instead, replace '''''notepad.exe''''' to match yours.
   
   
  ~F4::
  ~F4::

Revision as of 01:22, 16 August 2005

Pressing F4 in TC Lister starts Notepad with the active document.

; If you want to start an alternative editor instead, replace notepad.exe to match yours.

~F4::
IfWinActive, ahk_class TLister
{
  WinGetTitle, title
  left := InStr(title, "[")+1
  right := InStr(title, "]")-left
  StringMid, listerpath, title, left, right
  WinClose, ahk_class TLister
  Run, notepad.exe %listerpath%
}
Return


Back to AutoHotkey