macro_rules! select_layout {
    (@cmd ($cmd:expr) -E, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -n, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -o, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -p, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -t $target_pane:expr, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) $layout_name:expr, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr)) => { ... };
    () => { ... };
    (($cmd:expr), $($tail:tt)*) => { ... };
    ($($tail:tt)*) => { ... };
}
Expand description

Choose a specific layout for a window

§Manual

tmux ^2.7:

select-layout [-Enop] [-t target-pane] [layout-name]
(alias: selectl)

tmux ^2.1:

select-layout [-nop] [-t target-pane] [layout-name]
(alias: selectl)

tmux ^1.5:

select-layout [-np] [-t target-pane] [layout-name]
(alias: selectl)

tmux ^1.0:

select-layout [-t target-pane] [layout-name]
(alias: selectl)

tmux ^0.9:

select-layout [-t target-pane] layout-name
(alias: selectl)