Author Topic: Swap Left and Right Panes?  (Read 8117 times)

Tregonsee

  • Newbie
  • *
  • Posts: 6
    • View Profile
Swap Left and Right Panes?
« on: January 26, 2013, 22:53:12 »
Is there a way to swap the left and right panes without manually changing the individual paths?

Mathias (Author)

  • Administrator
  • VIP Member
  • *****
  • Posts: 4286
    • View Profile
    • Multi Commander
Re: Swap Left and Right Panes?
« Reply #1 on: January 26, 2013, 23:44:45 »
Ctrl+U will move each active tab to opposite side.

Tregonsee

  • Newbie
  • *
  • Posts: 6
    • View Profile
Re: Swap Left and Right Panes?
« Reply #2 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.


Mathias (Author)

  • Administrator
  • VIP Member
  • *****
  • Posts: 4286
    • View Profile
    • Multi Commander
Re: Swap Left and Right Panes?
« Reply #3 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}

Tregonsee

  • Newbie
  • *
  • Posts: 6
    • View Profile
Re: Swap Left and Right Panes?
« Reply #4 on: January 27, 2013, 15:35:46 »
Thanks for the clarification.  I will take a look at that.