macro_rules! paste_buffer {
    (@cmd ($cmd:expr) -d, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -p, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -r, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -b $buffer_name:expr, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -s $separator:expr, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -t $target_pane:expr, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -b $buffer_index:expr, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -t $target_window:expr, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr)) => { ... };
    () => { ... };
    (($cmd:expr), $($tail:tt)*) => { ... };
    ($($tail:tt)*) => { ... };
}
Expand description

Structure for inserting the contents of a paste buffer into the specified pane

§Manual

tmux ^1.7:

paste-buffer [-dpr] [-b buffer-name] [-s separator] [-t target-pane]
(alias: pasteb)

tmux ^1.3:

paste-buffer [-dr] [-b buffer-index] [-s separator] [-t target-window]
(alias: pasteb)

tmux ^1.0:

paste-buffer [-dr] [-b buffer-index] [-t target-window]
(alias: pasteb)

tmux ^0.8:

paste-buffer [-d] [-b buffer-index] [-t target-window]
(alias: pasteb)