Migrated From JP Software
You may want keystrokes to control TCI's tabs. You can set up keystroke aliases to make Control-T open a new tab, and Control-W or Control-F4 to close the current tab. Add a few lines to your 4START.BTM file:
These keystroke aliases will only work in 4NT. I'm not aware of any equivalent way to program keystrokes in CMD.EXE, though it shouldn't be too difficult to create equivalent DOSKEY macros.
You may want keystrokes to control TCI's tabs. You can set up keystroke aliases to make Control-T open a new tab, and Control-W or Control-F4 to close the current tab. Add a few lines to your 4START.BTM file:
Code:
iff defined tci then
alias @@ctrl-t=@"%tci" /r "%_cmdspec"
alias @@ctrl-w=@exit
alias @@ctrl-f4=@exit
endiff
These keystroke aliases will only work in 4NT. I'm not aware of any equivalent way to program keystrokes in CMD.EXE, though it shouldn't be too difficult to create equivalent DOSKEY macros.