Page 1 of 1
Pre-configure some internal commands
Posted: 2023-05-12, 03:31 UTC
by yong
The new internal command cm_OpenDriveByIndex is very handy, except that it is not
pre-configured. The user has to configure the hotkeys for each drive one by one, which
is not quite convenient.
This command comes from DC, where it is pre-configured, and can be used out of the
box. It will be nice if TC has this command, as well as some others, pre-configured.
Re: Pre-configure some internal commands
Posted: 2023-05-12, 04:24 UTC
by Sir_SiLvA
yong wrote: 2023-05-12, 03:31 UTC
The new internal command cm_OpenDriveByIndex is very handy, except that it is not pre-configured.
The user has to configure the hotkeys for each drive one by one, which is not quite convenient.
This command comes from DC, where it is pre-configured, and can be used out of the box.
It will be nice if TC has this command, as well as some others, pre-configured.
DC Shortcuts wrote:
Ctrl+digit (1..9) -> Open drive by index (see cm_OpenDriveByIndex)
Source:
https://doublecmd.github.io/doc/en/shortcuts.html
Support++
In the meantime just enter the following
Code: Select all
[Shortcuts]
C+1=cm_OpenDriveByIndex
C+1_params=1
C+2=cm_OpenDriveByIndex
C+2_params=2
C+3=cm_OpenDriveByIndex
C+3_params=3
C+4=cm_OpenDriveByIndex
C+4_params=4
C+5=cm_OpenDriveByIndex
C+5_params=5
C+6=cm_OpenDriveByIndex
C+6_params=6
C+7=cm_OpenDriveByIndex
C+7_params=7
C+8=cm_OpenDriveByIndex
C+8_params=8
C+9=cm_OpenDriveByIndex
C+9_params=9
into your wincmd.ini under [shortcuts].
Re: Pre-configure some internal commands
Posted: 2023-05-12, 16:09 UTC
by jinsight
Support++