Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Open Help File at Keyword Index

Aug
2,320
111
To open the TCC Help file at the keyword index;

Code:
*help hmkwindex

Joe
 
Thanks. @*help hmkwindex would keep it out of the history. F1 would be even better.
 
Here's an AutoHotKey script to use F1 for TCC Help.
Code:
#Requires AutoHotkey v2
;@Ahk2Exe-ConsoleApp
F1::
{
If WinActive("ahk_exe tcc.exe")
  {
    Send "@*help hmkwindex"
    Send "{Enter}"
  }
}

Joe
 
You would have to modify the script to take that into account.

Joe
 
You could also write a plugin that would replace the functionality of the F1 key.

Joe
 
Back
Top