how to disable (erase) a default hotkey?
Moderators: Hacker, petermad, Stefan2, white
-
- Member
- Posts: 136
- Joined: 2010-02-26, 11:52 UTC
how to disable (erase) a default hotkey?
There are SO MANY hot keys set up as default with TC - 80% or them I never use and some of them interfere with some of my system or autohotkey scripts so I would like to turn a few off like
Ctrl Z
Ctrl F
Alt M
when I go to key remmapping within the gui it just says
"default command no remmapping" as though it is not possible to remap or disable - is this true?
If there is a way to remove or disable how?
Ctrl Z
Ctrl F
Alt M
when I go to key remmapping within the gui it just says
"default command no remmapping" as though it is not possible to remap or disable - is this true?
If there is a way to remove or disable how?
What you dont see is what you get!
-
- Member
- Posts: 136
- Joined: 2010-02-26, 11:52 UTC
hmm define does nothing!
If I dont define a proper action I get a "function not implemented" message everytime that hotkey combo is pressed
hmm, well I tried just using cd as a command and that seems to work
I wonder if I could just define a command to send the hotkey that I want to use - in other words my script wants to send Ctrl F but TC interferes with that as Ctrl F is set as default for FTP so I could try setting my command so that Ctrl F sends Ctrl F
If I dont define a proper action I get a "function not implemented" message everytime that hotkey combo is pressed
hmm, well I tried just using cd as a command and that seems to work
I wonder if I could just define a command to send the hotkey that I want to use - in other words my script wants to send Ctrl F but TC interferes with that as Ctrl F is set as default for FTP so I could try setting my command so that Ctrl F sends Ctrl F
What you dont see is what you get!
-
- Member
- Posts: 136
- Joined: 2010-02-26, 11:52 UTC
I just thought it would be another way of stopping it form launching FTP
at the moment Ctrl F launches FTP dialogue so it stops the action I want which is run script a which also uses the hotkey Ctrl F
so setting TC to send Ctrl F when I press CTrl F would be another way to stop it launching FTP
however what you suggested works - I have just made it so Ctrl F does nothing by using an empty cd command.
at the moment Ctrl F launches FTP dialogue so it stops the action I want which is run script a which also uses the hotkey Ctrl F
so setting TC to send Ctrl F when I press CTrl F would be another way to stop it launching FTP
however what you suggested works - I have just made it so Ctrl F does nothing by using an empty cd command.
What you dont see is what you get!
-
- Member
- Posts: 136
- Joined: 2010-02-26, 11:52 UTC
- Balderstrom
- Power Member
- Posts: 2148
- Joined: 2005-10-11, 10:10 UTC
I do the Find/Search on Ctrl+F ... since that's what every single Windows editor does.
TC's default Shortcuts do not interfere with AHK shortcuts though.
E.g.
^t::MsgBox, Ctrl+T
or
^t::Return
Will prevent TC from duplicating the existing tab (it's default action for Ctrl+T).
TC's default Shortcuts do not interfere with AHK shortcuts though.
E.g.
^t::MsgBox, Ctrl+T
or
^t::Return
Will prevent TC from duplicating the existing tab (it's default action for Ctrl+T).
*BLINK* TC9 Added WM_COPYDATA and WM_USER queries for scripting.