- Aug
- 2,320
- 111
In Microsoft Edge,
I am often using the Ctrl + Shift + A shortcut key to display a list of the tabs that I currently have open.
This ability is also available in TCEdit,
but not with the Ctrl + Shift + A shortcut key.
I attempted to create this shortcut key in TCEdit by customizing the Windows List key assignments,
but it would not allow the Ctrl + Shift + A shortcut key.
So, I have created the shortcut key combination using AutoHotKey,
and have added it to my TCC.AHK file.
Joe
I am often using the Ctrl + Shift + A shortcut key to display a list of the tabs that I currently have open.
This ability is also available in TCEdit,
but not with the Ctrl + Shift + A shortcut key.
I attempted to create this shortcut key in TCEdit by customizing the Windows List key assignments,
but it would not allow the Ctrl + Shift + A shortcut key.
So, I have created the shortcut key combination using AutoHotKey,
and have added it to my TCC.AHK file.
Code:
; Added Ctrl + Shift + A to display list of open tabs
;
#IfWinActive ahk_exe tcedit.exe
^+A:: Send !wm
#IfWinActive