Closing "Edit Comment" dialog with Enter key???
Moderators: Hacker, petermad, Stefan2, white
Closing "Edit Comment" dialog with Enter key???
it is possible to configure in TC, that closing "Edit Comment" dialog may be done with Enter key?
(if comments are saved in descript.ino file - btw recommended by help - edit dialog would be closed easier with Enter, because that file is in single-line format.)
(if comments are saved in descript.ino file - btw recommended by help - edit dialog would be closed easier with Enter, because that file is in single-line format.)
silent
Maybe, with help of other tools. For example, Windows PowerPro can do that (look for pressing Enter in Edit Comment window and "replace" it with F2).
Maybe, with help of other tools. For example, Windows PowerPro can do that (look for pressing Enter in Edit Comment window and "replace" it with F2).
Flint's Homepage: Full TC Russification Package, VirtualDisk, NTFS Links, NoClose Replacer, and other stuff!
Using TC 11.03 / Win10 x64
Using TC 11.03 / Win10 x64
- SanskritFritz
- Power Member
- Posts: 3693
- Joined: 2003-07-24, 09:25 UTC
- Location: Budapest, Hungary
Tab and then Enter is also an option.
And here is an Autohotkey script for that:
And here is an Autohotkey script for that:
Code: Select all
$Return::
WinGet sf_sProcessName, ProcessName, A
WinGetActiveTitle sf_sWindowTitle
If (sf_sProcessName = "TOTALCMD.EXE" and sf_sWindowTitle = "File comment")
Send {F2}
else
Send {ENTER}
I switched to Linux, bye and thanks for all the fish!
- SanskritFritz
- Power Member
- Posts: 3693
- Joined: 2003-07-24, 09:25 UTC
- Location: Budapest, Hungary