Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - mgigli

Pages: [1]
1
Support and Feedback / Re: Quick filter
« on: May 09, 2026, 21:47:24 »
I know it's a bit of a hassle, but is there any way to do this with a single key? For example, by using an internal command that I assign to a key?

2
Support and Feedback / Quick filter
« on: May 09, 2026, 16:18:48 »
Hi,
Since I started migrating from TC, I have been trying to migrate some functionality to which I had become accustomed. I have already migrated TeraCopy and was searching for other things. The last thing I'm trying to configure is the quick search.
In TC, the quick search option allows you to only show files that meet the criteria. Here, Quick Search doesn't have this option, but Quick Filter may serve the same purpose. However, I can't figure out how to close or delete the Quick Filter option. I don't know if there is a missing keyboard assignment that I can't see. I'm trying to accomplish this with a user-defined internal command, but I also can't find any command that quickly closes (cleans, erases, etc.) the quick filter.

3
Support and Feedback / Re: Configuring TeraCopy
« on: May 09, 2026, 15:26:40 »
I finally managed to do it, with a bit of help.
I'm leaving my multiscript here for anyone who wants it.
At the moment, it works with files, folders and lists.
If there are any problems, please let me know, as it might need to be changed.

Quote
@var $listfile = TranslateEnvString( "%TEMP%" ) + "\\tc_list.txt";
@var $paths = GetSourceSelectedPaths();
@var $target = GetTargetPath();
SaveArray( $listfile, $paths, 1, 1 );
@var $args = "Copy *\"" + $listfile + "\" \"" + $target + "\"";
MC.Run CMD="C:\Program Files\TeraCopy\TeraCopy.exe" ARG="{$args}"

4
Support and Feedback / Re: Configuring TeraCopy
« on: April 14, 2026, 20:22:10 »
I have one more question: would it be too difficult to add the option to send the list as one file per line instead of separated by a space? Several copy software programs use this format.

5
Support and Feedback / Configuring TeraCopy
« on: April 12, 2026, 02:59:29 »
Hi, I'm new to MultiCommander, having come from TotalCommander, and I want to configure TeraCopy as an external command. So far, I can send one file to TeraCopy, but when I try to send a list of files, everything goes wrong. It seems that MultiCommander sends the list of files separated by spaces, but TeraCopy expects the list of files on separate lines. So, I would like to ask if anyone has already resolved this issue. If not, how would you recommend proceeding?
Should I create a script to send one file at a time, or should I change the list and replace the spaces with new lines?

Pages: [1]