macro_rules! load_buffer {
    (@cmd ($cmd:expr) -w, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -b $buffer:expr, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -t $target_client:expr, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -t $target_session:expr, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) $path:expr, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr)) => { ... };
    () => { ... };
    (($cmd:expr), $($tail:tt)*) => { ... };
    ($($tail:tt)*) => { ... };
}
Expand description

Load the contents of the specified paste buffer from path.

§Manual

tmux ^3.2:

load-buffer [-w] [-b buffer-name] [-t target-client] path
(alias: loadb)

tmux ^2.0:

load-buffer [-b buffer-name] path
(alias: loadb)

tmux ^1.5:

load-buffer [-b buffer-index] path
(alias: loadb)

tmux ^0.8:

load-buffer [-b buffer-index] [-t target-session] path
(alias: loadb)