AutoHotkey: Start Notepad In Lister

From TotalcmdWiki
Revision as of 01:22, 16 August 2005 by Icfu (talk | contribs)
Jump to navigation Jump to search

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