Go to previous/next sibling folder
-
- Site Admin
- Posts: 64232
- Joined: 22 May 2004 16:48
- Location: Win8.1, Win10, Win11, all @100%
- Contact:
Go to previous/next sibling folder
Today, I realized that I had been missing this functionality for years, both as buttons and as keyboard shortcuts, when the focus is not in the tree.
Am I the only one?
Am I the only one?
FAQ | XY News RSS | XY X - Forum users with the Windows version and screen scaling percentage in the Location field of their profiles get priority support.
Re: Go to previous/next sibling folder
Yes.
It‘s your product. Since you miss it you should add it.

It‘s your product. Since you miss it you should add it.
Re: Go to previous/next sibling folder
I miss this sometimes because I have this function in Total Commander 

Windows 11 Home, Version 24H2 (OS Build 26100.5074)
Portable x64 XYplorer (Actual version, including betas)
Display settings 1920 x 1080 Scale 100%
Everything 1.5.0.1396a (x64), Everything Toolbar 2.0.3, Listary Pro 6.3.5.94
Portable x64 XYplorer (Actual version, including betas)
Display settings 1920 x 1080 Scale 100%
Everything 1.5.0.1396a (x64), Everything Toolbar 2.0.3, Listary Pro 6.3.5.94
-
- Posts: 246
- Joined: 21 Oct 2020 23:33
- Location: Win 10 @ 100% (3440x1440)
-
- Site Admin
- Posts: 64232
- Joined: 22 May 2004 16:48
- Location: Win8.1, Win10, Win11, all @100%
- Contact:
Re: Go to previous/next sibling folder
Really? Can't find anything about it. Is there a default keyboard shortcut?
FAQ | XY News RSS | XY X - Forum users with the Windows version and screen scaling percentage in the Location field of their profiles get priority support.
Re: Go to previous/next sibling folder
For whom is this question ?
Windows 11 Home, Version 24H2 (OS Build 26100.5074)
Portable x64 XYplorer (Actual version, including betas)
Display settings 1920 x 1080 Scale 100%
Everything 1.5.0.1396a (x64), Everything Toolbar 2.0.3, Listary Pro 6.3.5.94
Portable x64 XYplorer (Actual version, including betas)
Display settings 1920 x 1080 Scale 100%
Everything 1.5.0.1396a (x64), Everything Toolbar 2.0.3, Listary Pro 6.3.5.94
-
- Site Admin
- Posts: 64232
- Joined: 22 May 2004 16:48
- Location: Win8.1, Win10, Win11, all @100%
- Contact:
Re: Go to previous/next sibling folder
For you, Horst.
FAQ | XY News RSS | XY X - Forum users with the Windows version and screen scaling percentage in the Location field of their profiles get priority support.
Re: Go to previous/next sibling folder
This is made with the TC Add-on TCFS2.
The functions are started as TC buttons, no keyboard shortcut.
TCFS2 provides its on script engine.
It's free as all TC add-ons and plugins.
The functions are started as TC buttons, no keyboard shortcut.
TCFS2 provides its on script engine.
It's free as all TC add-ons and plugins.
Code: Select all
TCFS2 Addon for Total Commander
-------------------------------
Tool allows controlling TC window modes:
+ maximize/restore window
+ move/resize window
+ hide/show window title
+ enable topmost window mode
+ hide/show any TC interface item
+ change dirs in panels
+ move file panels separator
+ send keypresses
+ undo last action using backup command
+ etc...
Windows 11 Home, Version 24H2 (OS Build 26100.5074)
Portable x64 XYplorer (Actual version, including betas)
Display settings 1920 x 1080 Scale 100%
Everything 1.5.0.1396a (x64), Everything Toolbar 2.0.3, Listary Pro 6.3.5.94
Portable x64 XYplorer (Actual version, including betas)
Display settings 1920 x 1080 Scale 100%
Everything 1.5.0.1396a (x64), Everything Toolbar 2.0.3, Listary Pro 6.3.5.94
-
- Site Admin
- Posts: 64232
- Joined: 22 May 2004 16:48
- Location: Win8.1, Win10, Win11, all @100%
- Contact:
Re: Go to previous/next sibling folder
Well, it will be cooler here. 

FAQ | XY News RSS | XY X - Forum users with the Windows version and screen scaling percentage in the Location field of their profiles get priority support.
Re: Go to previous/next sibling folder
This is what I implemented for a new user in 2023. It’s not elegant but simple. . .
#523; sel "+1"; if(exists(<curitem>) == "2") {#160;};
Windows 11 24H2 @100% 2560x1440
-
- Site Admin
- Posts: 64232
- Joined: 22 May 2004 16:48
- Location: Win8.1, Win10, Win11, all @100%
- Contact:
Re: Go to previous/next sibling folder
Seems to go up. Not to sibling.
FAQ | XY News RSS | XY X - Forum users with the Windows version and screen scaling percentage in the Location field of their profiles get priority support.
Re: Go to previous/next sibling folder
its just 2 functions , assignable to a shortcut via User Commands :
Code: Select all
"_ : go_down"
go_down();
function go_down()
$parentFolders = listfolder(gettoken(<curpath>, -2, "\",,1), , 2);
$count_folders = gettoken($parentFolders, "count", "|"); // count all folders
$cur_index = gettokenindex(<curpath>, $parentFolders, , ""); // Index of curent folder
$next_index = $cur_index+1;
if($next_index <= $count_folders) // if current index is less than max ix of folders
{
$item = gettoken($parentFolders, $next_index, "|");
goto $item;
}
else {break;
}
//
"_ : go_up"
go_up();
function go_up()
$parentFolders = listfolder(gettoken(<curpath>, -2, "\",,1), , 2);
$count_folders = gettoken($parentFolders, "count", "|"); // count all folders
$cur_index = gettokenindex(<curpath>, $parentFolders, , ""); // Index of curent folder
$next_index = $cur_index-1;
if($next_index <= $count_folders) // if current index is less than max ix of folders
{
$item = gettoken($parentFolders, $next_index, "|");
goto $item;
}
else {break;
}
Win11-Pro , 3840x2160@100% , XY=x64 newest
-
- Site Admin
- Posts: 64232
- Joined: 22 May 2004 16:48
- Location: Win8.1, Win10, Win11, all @100%
- Contact:
Re: Go to previous/next sibling folder
Nice 

FAQ | XY News RSS | XY X - Forum users with the Windows version and screen scaling percentage in the Location field of their profiles get priority support.
Re: Go to previous/next sibling folder
Sort Folders Apart...
(Will this not be added to the VB version? No problem, I will recommend the tB version to new users.)
Windows 11 24H2 @100% 2560x1440
-
- Site Admin
- Posts: 64232
- Joined: 22 May 2004 16:48
- Location: Win8.1, Win10, Win11, all @100%
- Contact:
Re: Go to previous/next sibling folder
Yep, tb only.
FAQ | XY News RSS | XY X - Forum users with the Windows version and screen scaling percentage in the Location field of their profiles get priority support.