Page 1 of 1

I want to add “go here in other pane” in context menu of file+context menu of folder +context menu of empty space.

Posted: 14 Sep 2024 18:47
by shuklaharshit75
what i want.gif
Suppose I'm in a folder (tab) in the right pane
{C:\Users\HARSHIT\Downloads\###_DMMMM}
and I want to open the same folder in the left pane (any tab)

First of all I have to select the right pane , Then I can do this by going to the menu option of paints at the uppermost And then selecting go here in other pane option

but what I want is to add “go here in other pane” in context menu of file+context menu of folder +context menu of empty space.
WHAT I WANT
what i want.gif
what i want 2.gif
HERE ARE MY CURRENT CONTEXT MENUS
Empty space context menu
Empty space context menu.png
file context menu
file context menu.png
Folder context menu
Folder context menu .png

How to make it happen???
Also you can suggest me how to do this with keyboard shortcuts.

Re: I want to add “go here in other pane” in context menu of file+context menu of folder +context menu of empty space.

Posted: 14 Sep 2024 21:40
by highend
01. You have an option in the context menu for folders
Open in Other Pane^^

02. You could only have such an option in the context menu of empty space but that would require scripting knowledge

03. So the easiest way is:
Define a UDC = User Defined Command and assign it a keyboard shortcut
1.png
With this script:

Code: Select all

$items   = <get SelectedItemsPathNames>;
    $curPath = <curpath>;
    if (get("CountSelected") == 1 && exists($items) == 2) { $curPath = <curitem>; }
    focus "PI";
    goto $curPath;