I've added some more hotkeys to my AutoHotKey tcc.ahk script.
Ref: Directory History Window
Ref: TCEdit Tab Switching using Ctrl + 1, 2, ... 8
Read more
Ref: Directory History Window
Ref: TCEdit Tab Switching using Ctrl + 1, 2, ... 8
Code:
#SingleInstance Ignore
SetTitleMatchMode, 2 ; Ensures partial matching of window titles
; Added hotkey to open dirhist when Directories window is open
; Ref: https://jpsoft.com/forums/threads/directory-history-window.12414/post-71707
;
#IfWinActive, Directories
F1::
Run, "C:\Program Files\JPSoft\TCMD34\eViewer.exe"...
Read more