macro_rules! suspend_client {
    (@cmd ($cmd:expr) -t $target_client:expr, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -c $target_client:expr, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr)) => { ... };
    () => { ... };
    (($cmd:expr), $($tail:tt)*) => { ... };
    ($($tail:tt)*) => { ... };
}
Expand description

Suspend a client by sending SIGTSTP (tty stop)

Manual

tmux ^1.5:

suspend-client [-t target-client]
(alias: suspendc)

tmux ^0.8:

suspend-client [-c target-client]
(alias: suspendc)