Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@AWtnb
Created April 23, 2022 03:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AWtnb/c876f7a0a345a5c19a243eeb90c6b63b to your computer and use it in GitHub Desktop.
Save AWtnb/c876f7a0a345a5c19a243eeb90c6b63b to your computer and use it in GitHub Desktop.
Tablacus explorer customize: Duplicate the current tab to the side pane (開いているタブを横のペインに複製する)
// https://gist.github.com/tablacus/b706707ae86aa4fd7d126d5d117a853d
// Toggle split pane (Vertical) Require "Split" - Tablacus Explorer
function ToggleSplitPaneVertical() {
if (te.Ctrls(CTRL_TC, true).Count > 1) {
Addons.Split.Exec(1, 1);
} else {
Addons.Split.Exec(2, 3);
// https://github.com/tablacus/TablacusExplorerAddons/wiki/switchpane
Sync.SwitchPane.NextFV().Navigate(GetFolderView(), SBSP_NEWBROWSER);
}
}
ToggleSplitPaneVertical()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment