macro_rules! source_file {
(@cmd ($cmd:expr) -F, $($tail:tt)*) => { ... };
(@cmd ($cmd:expr) -n, $($tail:tt)*) => { ... };
(@cmd ($cmd:expr) -q, $($tail:tt)*) => { ... };
(@cmd ($cmd:expr) -v, $($tail:tt)*) => { ... };
(@cmd ($cmd:expr) -t $target_pane:expr, $($tail:tt)*) => { ... };
(@cmd ($cmd:expr) $path:expr, $($tail:tt)*) => { ... };
(@cmd ($cmd:expr)) => { ... };
() => { ... };
(($cmd:expr), $($tail:tt)*) => { ... };
($($tail:tt)*) => { ... };
}
Expand description
Execute commands from path
ยงManual
tmux ^3.4:
source-file [-Fnqv] [-t target-pane] path ...
(alias: source)
tmux ^3.2:
source-file [-Fnqv] path ...
(alias: source)
tmux ^3.0:
source-file [-nqv] path
(alias: source)
tmux ^2.3:
source-file path
(alias: source)
tmux ^0.8:
source-file path
(alias: source)