macro_rules! resize_window {
(@cmd ($cmd:expr) -a, $($tail:tt)*) => { ... };
(@cmd ($cmd:expr) -A, $($tail:tt)*) => { ... };
(@cmd ($cmd:expr) -D, $($tail:tt)*) => { ... };
(@cmd ($cmd:expr) -L, $($tail:tt)*) => { ... };
(@cmd ($cmd:expr) -R, $($tail:tt)*) => { ... };
(@cmd ($cmd:expr) -U, $($tail:tt)*) => { ... };
(@cmd ($cmd:expr) -t $target_window:expr, $($tail:tt)*) => { ... };
(@cmd ($cmd:expr) -x $width:expr, $($tail:tt)*) => { ... };
(@cmd ($cmd:expr) -y $height:expr, $($tail:tt)*) => { ... };
(@cmd ($cmd:expr) $adjustment:expr, $($tail:tt)*) => { ... };
(@cmd ($cmd:expr)) => { ... };
() => { ... };
(($cmd:expr), $($tail:tt)*) => { ... };
($($tail:tt)*) => { ... };
}
Expand description
Resize a window, up, down, left or right
ยงManual
tmux ^2.9:
resize-window [-aADLRU] [-t target-window] [-x width] [-y height] [adjustment]
(alias: resizew)