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 - vsudakou

Pages: [1]
1
Support and Feedback / Custom commands and archives
« on: April 23, 2017, 17:26:13 »
Hi all,

MultiCommander allows to open archives directly in panel (using virtual filesystem plugins).
When you go into archive and open some file there - MultiCommander automatically unpacks that, and associated program is able to process that.
But when I try to perform my User Defined command on any file inside of archive - MultiCommander doesn't unpack that file automatically.

Below is example of my External command which I try to perform on any file inside of ZIP-archive. MultiCommander doesn't unpack "${focusfilepath}" when I run it.
Code: [Select]
"C:\Program Files (x86)\Microsoft VS Code\Code.exe" "${focusfilepath}"
Thank you in advance for any suggestions.

2
Feature Requests and Suggestions / Search in configurations.
« on: April 17, 2017, 17:52:29 »
Hi,

If you've ever used programs based on Eclipse SDK - you would like see there ability to search in configuration and shortcuts...
And every year more and more programs become to support this feature. E.g. all popular text editors like Atom, MS Visual Code, Sublime  have this. I can give you a huge list of software which support that feature.

That's very comfortable...

3
vsudakou
If it's impossible to reorder, you may swap paths of two tabs.

1. Get current path (e.g. path1)
2. Switch to next (prev) tab and get its path (e.g. path2)
3. Set current tab's path to path1
4. Get back to prev tab and set it's path to path2
5. Go again to next tab if needed.

Maybe it's not as beautiful as it could be, but must be enough as a temp. solution

@Jungle, thank you. That works. Here is script in case someone else needs it...

move_tab_to_right:
Code: [Select]
@var $spath1 = GetSourcePath();
MC.SetActiveTab PANEL=ACTIVE TAB=NEXT
@var $spath2 = GetSourcePath();
MC.Explorer.Goto SOURCE="{$spath1}"
MC.SetActiveTab PANEL=ACTIVE TAB=PREV
MC.Explorer.Goto SOURCE="{$spath2}"
MC.SetActiveTab PANEL=ACTIVE TAB=NEXT

move_tab_to_left
Code: [Select]
@var $spath1 = GetSourcePath();
MC.SetActiveTab PANEL=ACTIVE TAB=PREV
@var $spath2 = GetSourcePath();
MC.Explorer.Goto SOURCE="{$spath1}"
MC.SetActiveTab PANEL=ACTIVE TAB=NEXT
MC.Explorer.Goto SOURCE="{$spath2}"
MC.SetActiveTab PANEL=ACTIVE TAB=PREV

4
Does this reply to your earlier question not work for this situation?

http://forum.multicommander.com/forum/index.php/topic,1969.0.html

@AlanJB, yes - I didn't find appropriate command between "Custom Commands". And I didn't find any hint in documentation whether it's possible to change an order of tabs in panel using scripting...
Maybe there is some not documented way to achieve that?

5
Hi,

Currently changing of order of tabs on the same Panel can be done using mouse (drag&drop).

Is it possible to move active tab to left/right relatively to nearby tabs by shortcut?

Thanks.

6
Thanks Jungle! That works

7
Hi guys,

Is it possible to change Ctrl-Tab shortcut to something else? I cannot find it in configuration anywhere....

Thanks!

Pages: [1]