Skip to content

Instantly share code, notes, and snippets.

@tablacus
Last active September 8, 2021 10:52
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tablacus/bbad6d9ffb29029ca94f35f51c80f1dc to your computer and use it in GitHub Desktop.
Save tablacus/bbad6d9ffb29029ca94f35f51c80f1dc to your computer and use it in GitHub Desktop.
Open selected items in next pane. (Require an add-on "Switch to next pane") - Tablacus Explorer
let FV = GetFolderView(Ctrl, pt);
const Selected = FV.SelectedItems();
if (Selected.Count) {
FV = Sync.SwitchPane.NextFV(FV);
for (let i = 0; i < Selected.Count; i++) {
NavigateFV(FV, Selected.Item(i), SBSP_NEWBROWSER);
}
}
@tablacus
Copy link
Author

tablacus commented Aug 7, 2017

image

@tablacus
Copy link
Author

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment