#[macro_export]
macro_rules! link_window {
(@cmd ($cmd:expr) -a, $($tail:tt)*) => {{
$crate::link_window!(@cmd ({
$cmd.after()
}) $($tail)*)
}};
(@cmd ($cmd:expr) -b, $($tail:tt)*) => {{
$crate::link_window!(@cmd ({
$cmd.before()
}) $($tail)*)
}};
(@cmd ($cmd:expr) -d, $($tail:tt)*) => {{
$crate::link_window!(@cmd ({
$cmd.detached()
}) $($tail)*)
}};
(@cmd ($cmd:expr) -k, $($tail:tt)*) => {{
$crate::link_window!(@cmd ({
$cmd.kill()
}) $($tail)*)
}};
(@cmd ($cmd:expr) -s $src_window:expr, $($tail:tt)*) => {{
$crate::link_window!(@cmd ({
$cmd.src_window($src_window)
}) $($tail)*)
}};
(@cmd ($cmd:expr) -t $dst_window:expr, $($tail:tt)*) => {{
$crate::link_window!(@cmd ({
$cmd.dst_window($dst_window)
}) $($tail)*)
}};
(@cmd ($cmd:expr)) => {{
$cmd
}};
() => {{
$crate::LinkWindow::new()
}};
(($cmd:expr), $($tail:tt)*) => {{
$crate::link_window!(@cmd ($cmd) $($tail)*,)
}};
($($tail:tt)*) => {{
$crate::link_window!(@cmd ({ $crate::LinkWindow::new() }) $($tail)*,)
}};
}
#[test]
fn link_window_macro() {
use std::borrow::Cow;
let link_window = link_window!();
#[cfg(feature = "tmux_2_1")]
let link_window = link_window!((link_window), -a);
#[cfg(feature = "tmux_3_2")]
let link_window = link_window!((link_window), -b);
#[cfg(feature = "tmux_0_8")]
let link_window = link_window!((link_window), -d);
#[cfg(feature = "tmux_0_8")]
let link_window = link_window!((link_window), -k);
#[cfg(feature = "tmux_0_8")]
let link_window = link_window!((link_window), -s "1");
#[cfg(feature = "tmux_0_8")]
let link_window = link_window!((link_window), -t "2");
#[cfg(not(feature = "cmd_alias"))]
let cmd = "link-window";
#[cfg(feature = "cmd_alias")]
let cmd = "linkw";
let mut s = Vec::new();
s.push(cmd);
#[cfg(feature = "tmux_2_1")]
s.push("-a");
#[cfg(feature = "tmux_3_2")]
s.push("-b");
#[cfg(feature = "tmux_0_8")]
s.push("-d");
#[cfg(feature = "tmux_0_8")]
s.push("-k");
#[cfg(feature = "tmux_0_8")]
s.extend_from_slice(&["-s", "1"]);
#[cfg(feature = "tmux_0_8")]
s.extend_from_slice(&["-t", "2"]);
let s: Vec<Cow<str>> = s.into_iter().map(|a| a.into()).collect();
let link_window = link_window.build().to_vec();
assert_eq!(link_window, s);
}