Adding an option to "Synchronize Directories"
Moderators: Hacker, petermad, Stefan2, white
Adding an option to "Synchronize Directories"
Hello Total Commander Team and users
Again & again I find myself in a need to the following option, now missing:
In the fantastic "Synchronize Directories", when you get the results, and right click the mouse, the following options need to be added:
Go to right file
Go to left file
Go to left & right files
The same way as in Search results, often I get the Compare table and, as a result, wish to return back, not to the origin directories, but to other dirs or files I got in the compare table/
Hope you consider my suggestion and add it very soon
Thanks a lot
Yosi shatz
Registered User
Again & again I find myself in a need to the following option, now missing:
In the fantastic "Synchronize Directories", when you get the results, and right click the mouse, the following options need to be added:
Go to right file
Go to left file
Go to left & right files
The same way as in Search results, often I get the Compare table and, as a result, wish to return back, not to the origin directories, but to other dirs or files I got in the compare table/
Hope you consider my suggestion and add it very soon
Thanks a lot
Yosi shatz
Registered User
Support++
License #524 (1994)
Danish Total Commander Translator
TC 11.55rc4 32+64bit on Win XP 32bit & Win 7, 8.1 & 10 (22H2) 64bit, 'Everything' 1.5.0.1393a
TC 3.60b4 on Android 6, 13, 14
TC Extended Menus | TC Languagebar | TC Dark Help | PHSM-Calendar
Danish Total Commander Translator
TC 11.55rc4 32+64bit on Win XP 32bit & Win 7, 8.1 & 10 (22H2) 64bit, 'Everything' 1.5.0.1393a
TC 3.60b4 on Android 6, 13, 14
TC Extended Menus | TC Languagebar | TC Dark Help | PHSM-Calendar
I totally agree.
What else can a user do, if they find a specific file which they want to open? There is not much to do, just to remember the filename and to search for it after closing the SyncDir dialogue.
A double-click opens the file in the native (or pre-selected) editor (what about DOCX or PDF?).
CTRL-C copies only the filename and displayed properties.
Cheers,
What else can a user do, if they find a specific file which they want to open? There is not much to do, just to remember the filename and to search for it after closing the SyncDir dialogue.
A double-click opens the file in the native (or pre-selected) editor (what about DOCX or PDF?).
CTRL-C copies only the filename and displayed properties.
Cheers,
- Samuel
- Power Member
- Posts: 1930
- Joined: 2003-08-29, 15:44 UTC
- Location: Germany, Brandenburg an der Havel
- Contact:
This is what I am using.ackuxacky wrote:Dear Samuel,Samuel wrote:I use an ugly workaround with ahk for this, so you got my support too.
what is your solution, pls?
Cheers,
Code: Select all
#IfWinActive, ahk_class TCmpForm
+Left::
Send, {F3}
File := GetListerPath("5", "1")
run %File%
return
+Right::
Send, +{F3}
File := GetListerPath("5", "1")
run %File%
return
+Up::
Send, {F3}
File1 := GetListerPath("5", "1")
Send, +{F3}
File2 := GetListerPath("5", "1")
run C:\totalcmd\totalcmd.exe /T /O /L="%File1%"
run C:\totalcmd\totalcmd.exe /T /O /R="%File2%"
return
#IfWinActive
GetListerPath(Timeout, CloseLister)
{
WinWaitActive, ahk_class TLister,, %Timeout%
IfWinNotActive, ahk_class TLister
return
WinGetActiveTitle, Title
if(CloseLister == "1") {
WinClose, %Title%
}
pos := (InStr(Title, "[", false, 1) + 1)
;Folder := SubStr(Title, pos, (InStr(Title, "", false, 0) + 1) - pos)
File := SubStr(Title, pos, StrLen(Title) - pos)
return File
}