1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
/// Move to the next window in the session
///
/// # Manual
///
/// tmux ^0.9:
/// ```text
/// next-window [-a] [-t target-session]
/// (alias: next)
/// ```
///
/// tmux ^0.8:
/// ```text
/// next-window [-t target-session]
/// (alias: next)
/// ```
#[macro_export]
macro_rules! next_window {
// `[-a]`
(@cmd ($cmd:expr) -a, $($tail:tt)*) => {{
$crate::next_window!(@cmd ({
$cmd.attach()
}) $($tail)*)
}};
// `[-t target-session]`
(@cmd ($cmd:expr) -t $target_session:expr, $($tail:tt)*) => {{
$crate::next_window!(@cmd ({
$cmd.target_session($target_session)
}) $($tail)*)
}};
//(@cmd ($cmd:expr) -$unknown:tt, $($tail:tt)*) => {{
//::std::compile_error!("unknown flag, option or parameter: {}", $unknown);
//}};
(@cmd ($cmd:expr)) => {{
$cmd
}};
() => {{
$crate::NextWindow::new()
}};
(($cmd:expr), $($tail:tt)*) => {{
$crate::next_window!(@cmd ($cmd) $($tail)*,)
}};
($($tail:tt)*) => {{
$crate::next_window!(@cmd ({ $crate::NextWindow::new() }) $($tail)*,)
}};
}
#[test]
fn next_window_macro() {
use std::borrow::Cow;
// Move to the next window in the session
//
// # Manual
//
// tmux ^0.9:
// ```text
// next-window [-a] [-t target-session]
// (alias: next)
// ```
//
// tmux ^0.8:
// ```text
// next-window [-t target-session]
// (alias: next)
// ```
let next_window = next_window!();
let next_window = next_window!((next_window), -a);
#[cfg(feature = "tmux_0_8")]
let next_window = next_window!((next_window), -t "1");
#[cfg(not(feature = "cmd_alias"))]
let cmd = "next-window";
#[cfg(feature = "cmd_alias")]
let cmd = "next";
let mut s = Vec::new();
s.push(cmd);
#[cfg(feature = "tmux_0_9")]
s.push("-a");
#[cfg(feature = "tmux_0_8")]
s.extend_from_slice(&["-t", "1"]);
let s: Vec<Cow<str>> = s.into_iter().map(|a| a.into()).collect();
let next_window = next_window.build().to_vec();
assert_eq!(next_window, s);
}