macro_rules! show_buffer {
(@cmd ($cmd:expr) -b $buffer_name:expr, $($tail:tt)*) => { ... };
(@cmd ($cmd:expr) -b $buffer_index:expr, $($tail:tt)*) => { ... };
(@cmd ($cmd:expr) -t $target_session:expr, $($tail:tt)*) => { ... };
(@cmd ($cmd:expr)) => { ... };
() => { ... };
(($cmd:expr), $($tail:tt)*) => { ... };
($($tail:tt)*) => { ... };
}
Expand description
Display the contents of the specified buffer.
ยงManual
tmux ^1.5:
show-buffer [-b buffer-name]
(alias: showb)
tmux ^0.8:
show-buffer [-b buffer-index] [-t target-session]
(alias: showb)