Multi Commander Support Forum

Multi Commander => Support and Feedback => Topic started by: Tregonsee on January 26, 2013, 22:53:12

Title: Swap Left and Right Panes?
Post by: Tregonsee on January 26, 2013, 22:53:12
Is there a way to swap the left and right panes without manually changing the individual paths?
Title: Re: Swap Left and Right Panes?
Post by: Mathias (Author) on January 26, 2013, 23:44:45
Ctrl+U will move each active tab to opposite side.
Title: Re: Swap Left and Right Panes?
Post by: Tregonsee on January 27, 2013, 10:22:11
It does, but not in quite the way I was thinking.  If you have the folder tree visible, it also moved that.  I usually run with the folder tree, and  left and right panes.  In my other file manager program, I can swap the left and right panes, but the folder tree is not changed.  It makes it easier to move files in some circumstances.

Title: Re: Swap Left and Right Panes?
Post by: Mathias (Author) on January 27, 2013, 11:04:52
The you have to use create a own command using MultiScript

Code: [Select]
@var $source = GetSourcePath();
@var $target = GetTargetPath();

MC.Explorer.Goto SOURCE={$target} TARGET={$source}
Title: Re: Swap Left and Right Panes?
Post by: Tregonsee on January 27, 2013, 15:35:46
Thanks for the clarification.  I will take a look at that.