Skip to main content

customize_mode

Macro customize_mode 

Source
macro_rules! customize_mode {
    (@cmd ($cmd:expr) -N, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -Z, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -F $format:expr, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -f $filter:expr, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -t $target_pane:expr, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) $template:expr, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr)) => { ... };
    () => { ... };
    (($cmd:expr), $($tail:tt)*) => { ... };
    ($($tail:tt)*) => { ... };
}
Expand description

Put a pane into customize mode

ยงManual

tmux >=3.2:

customize-mode [-NZ] [-F format] [-f filter] [-t target-pane] [template]