- Aug
- 2,294
- 111
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
Ref: Ctrl + Shift + A to display list of open TCEdit Tabs
Joe
Ref: Directory History Window
Ref: TCEdit Tab Switching using Ctrl + 1, 2, ... 8
Ref: Ctrl + Shift + A to display list of open TCEdit Tabs
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" "C:\Program Files\JPSoft\TCMD34\TakeCommand.ewriter" "dirhist.html"
return
#IfWinActive
; Added hotkeys to switch tabs in tcedit
; Ref: https://jpsoft.com/forums/threads/tcedit-tab-switching-using-ctrl-1-2-8.12386/post-71942
;
#IfWinActive ahk_exe tcedit.exe
^1:: Send !w1
^2:: Send !w2
^3:: Send !w3
^4:: Send !w4
^5:: Send !w5
^6:: Send !w6
#IfWinActive
; Added Ctrl + Shift + A to display list of open tabs
;
#IfWinActive ahk_exe tcedit.exe
^+A:: Send !wm
#IfWinActive
Joe
Last edited: