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
HERE ARE MY CURRENT CONTEXT MENUS
Empty space context menu
file context menu
Folder context menu
How to make it happen???
Also you can suggest me how to do this with keyboard shortcuts.
I want to add “go here in other pane” in context menu of file+context menu of folder +context menu of empty space.
-
shuklaharshit75
- Posts: 42
- Joined: 10 Aug 2024 10:12
I want to add “go here in other pane” in context menu of file+context menu of folder +context menu of empty space.
You do not have the required permissions to view the files attached to this post.
-
highend
- Posts: 14924
- Joined: 06 Feb 2011 00:33
- Location: Win Server 2022 @100%
Re: I want to add “go here in other pane” in context menu of file+context menu of folder +context menu of empty space.
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 With this script:
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 With this script:
Code: Select all
$items = <get SelectedItemsPathNames>;
$curPath = <curpath>;
if (get("CountSelected") == 1 && exists($items) == 2) { $curPath = <curitem>; }
focus "PI";
goto $curPath;
You do not have the required permissions to view the files attached to this post.
One of my scripts helped you out? Please donate via Paypal
XYplorer Beta Club