macro_rules! list_panes {
    (@cmd ($cmd:expr) -a, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -s, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -F $format:expr, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -t $target:expr, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr)) => { ... };
    () => { ... };
    (($cmd:expr), $($tail:tt)*) => { ... };
    ($($tail:tt)*) => { ... };
}
Expand description

List panes on the server

§Manual

tmux ^1.6:

list-panes [-as] [-F format] [-t target]
(alias: lsp)

tmux ^1.5:

list-panes [-as] [-t target]
(alias: lsp)

tmux ^0.8:

list-panes [-t target]
(alias: lsp)