How-to: "Go To My Documents" command?
Moderators: Hacker, petermad, Stefan2, white
How-to: "Go To My Documents" command?
Is there a way to create a button that creates a link to a specified file or directory.
I have lived inside of TC for 15 - 20 years. It has seen me through everything.
The task I perform often is having to go to My Documents. That task at least 4 clicks and some scrolling.
Is this possible without filling the dir path at the bottom?
I have lived inside of TC for 15 - 20 years. It has seen me through everything.
The task I perform often is having to go to My Documents. That task at least 4 clicks and some scrolling.
Is this possible without filling the dir path at the bottom?
usercmd.ini user command internal command
Another idea.
You can also use TC command "CD" with a path like "%USERPROFILE%\My Documents".
Put this e.g. into an user command and write it to the usercmd.ini:
If not exist, just create it
\usercmd.ini
Code: Select all
[em_GoToMyHome]
cmd= CD %USERPROFILE%\My Documents
Next add a shortcut to that command (here: Ctrl+Shift+H)
\WINCMD.INI
Code: Select all
[Shortcuts]
CS+H=em_GoToMyHome
Now you be able to press Ctrl+Shift+H and see yorself beamt to Documents.
Press Alt+ArrowDown to see a history list to go back to last folder.
- - -
Another useful command BTW is "go to root of the drive".
You can also assign a shortcut to that command:
CS+R=cm_GoToRoot
"cm_GoToRoot" is a internal command, which you can find in \TOTALCMD.INC file.
Shortcut for this command exists for decades, and goes from DOS managers. It is Ctrl+\.Another useful command BTW is "go to root of the drive".
You can also assign a shortcut to that command:
All of this may be done via TC dialogs w/o editing INI files. Command browser (cm_CommandBrowser) is able to create/edit user commands, and TC configuration dialog (cm_Confirmation) allows assigning shortcuts for commands w/o restarting TC.Another idea.
Also it is possible in TC to add a user command to main menu via editing corresponding MNU file. It may be added to main menu itself or any/new its submenu.
Thanks for clarifying, MVV.
According to the help "Strg+<" should work for Germans:
Fine, but not useful for german keyboard layout. So I think not about that.MVV wrote: Shortcut for this command exists for decades, and goes from DOS managers. It is Ctrl+\.
According to the help "Strg+<" should work for Germans:
CTRL+< Jump to the root directory (most European keyboards)
CTRL+\ Jump to the root directory (US keyboard)
Yes, but more steps to explain.All of this may be done via TC dialogs w/o editing INI files.
I noticed that CTRL + \ works when a tab is 'locked' but won't when the tab is 'locked, but directory changes allowed'.MVV wrote:Shortcut for this command exists for decades, and goes from DOS managers. It is Ctrl+\.Another useful command BTW is "go to root of the drive".
You can also assign a shortcut to that command:
The logic seems reversed. Isn't this rather odd?