tmux_interface 0.4.0

Rust language library for communication with TMUX via CLI
Documentation
// auto-generated file
//

/// This is similar to link-window, except the source and destination windows are swapped
///
/// # Manual
///
/// tmux >=0.8:
/// ```text
/// swap-window [-d] [-s src-window] [-t dst-window]
/// (alias: swapw)
/// ```
#[macro_export]
macro_rules! swap_window {
    // `[-d]`
    (@cmd ($cmd:expr) -d, $($tail:tt)*) => {{
        $crate::swap_window!(@cmd ({
            $cmd.detached()
        }) $($tail)*)
    }};

    // `[-s src-window]`
    (@cmd ($cmd:expr) -s $src_window:expr, $($tail:tt)*) => {{
        $crate::swap_window!(@cmd ({
            $cmd.src_window($src_window)
        }) $($tail)*)
    }};

    // `[-t dst-window]`
    (@cmd ($cmd:expr) -t $dst_window:expr, $($tail:tt)*) => {{
        $crate::swap_window!(@cmd ({
            $cmd.dst_window($dst_window)
        }) $($tail)*)
    }};

    //(@cmd ($cmd:expr) -$unknown:tt, $($tail:tt)*) => {{
        //::std::compile_error!("unknown flag, option or parameter: {}", $unknown);
    //}};
    (@cmd ($cmd:expr)) => {{
        $cmd
    }};
    () => {{
        $crate::SwapWindow::new()
    }};
    (($cmd:expr), $($tail:tt)*) => {{
        $crate::swap_window!(@cmd ($cmd) $($tail)*,)
    }};
    ($($tail:tt)*) => {{
        $crate::swap_window!(@cmd ({ $crate::SwapWindow::new() }) $($tail)*,)
    }};
}

#[test]
fn swap_window_macro() {
    use std::borrow::Cow;

    // This is similar to link-window, except the source and destination windows are swapped
    //
    // # Manual
    //
    // tmux >=0.8:
    // ```text
    // swap-window [-d] [-s src-window] [-t dst-window]
    // (alias: swapw)
    // ```

    let swap_window = swap_window!();
    #[cfg(feature = "tmux_0_8")]
    let swap_window = swap_window!((swap_window), -d);
    #[cfg(feature = "tmux_0_8")]
    let swap_window = swap_window!((swap_window), -s "1");
    #[cfg(feature = "tmux_0_8")]
    let swap_window = swap_window!((swap_window), -t "2");

    #[cfg(not(feature = "cmd_alias"))]
    let cmd = "swap-window";
    #[cfg(feature = "cmd_alias")]
    let cmd = "swapw";

    let mut s = Vec::new();
    s.push(cmd);
    #[cfg(feature = "tmux_0_8")]
    s.push("-d");
    #[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 swap_window = swap_window.build().to_vec();

    assert_eq!(swap_window, s);
}