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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
use crate::commands::constants::*;
use crate::TmuxCommand;
use std::borrow::Cow;
/// Link the window at src-window to the specified dst-window
///
/// # Manual
///
/// tmux ^2.1:
/// ```text
/// link-window [-adk] [-s src-window] [-t dst-window]
/// (alias: linkw)
/// ```
///
/// tmux ^0.8:
/// ```text
/// link-window [-dk] [-s src-window] [-t dst-window]
/// (alias: linkw)
/// ```
#[derive(Clone, Eq, PartialEq, Ord, PartialOrd, Hash, Debug, Default)]
pub struct LinkWindow<'a> {
/// `[-a]` - the window is moved to the next index up
#[cfg(feature = "tmux_2_1")]
pub add: bool,
/// `[-d]` - the newly linked window is not selected
#[cfg(feature = "tmux_0_8")]
pub detached: bool,
/// `[-k]` - if dst-window exists, it is killed, otherwise an error is generated
#[cfg(feature = "tmux_0_8")]
pub kill: bool,
/// `[-s src-window]` - src-window
#[cfg(feature = "tmux_0_8")]
pub src_window: Option<Cow<'a, str>>,
/// `[-t dst-window]` - dst-window
#[cfg(feature = "tmux_0_8")]
pub dst_window: Option<Cow<'a, str>>,
}
impl<'a> LinkWindow<'a> {
pub fn new() -> Self {
Default::default()
}
/// `[-a]` - the window is moved to the next index up
#[cfg(feature = "tmux_2_1")]
pub fn add(mut self) -> Self {
self.add = true;
self
}
/// `[-d]` - the newly linked window is not selected
#[cfg(feature = "tmux_0_8")]
pub fn detached(mut self) -> Self {
self.detached = true;
self
}
/// `[-k]` - if dst-window exists, it is killed, otherwise an error is generated
#[cfg(feature = "tmux_0_8")]
pub fn kill(mut self) -> Self {
self.kill = true;
self
}
/// `[-s src-window]` - src-window
#[cfg(feature = "tmux_0_8")]
pub fn src_window<S: Into<Cow<'a, str>>>(mut self, src_window: S) -> Self {
self.src_window = Some(src_window.into());
self
}
/// `[-t dst-window]` - dst-window
#[cfg(feature = "tmux_0_8")]
pub fn dst_window<S: Into<Cow<'a, str>>>(mut self, dst_window: S) -> Self {
self.dst_window = Some(dst_window.into());
self
}
pub fn build(self) -> TmuxCommand<'a> {
let mut cmd = TmuxCommand::new();
cmd.name(LINK_WINDOW);
// `[-a]` - the window is moved to the next index up
#[cfg(feature = "tmux_2_1")]
if self.add {
cmd.push_flag(A_LOWERCASE_KEY);
}
// `[-d]` - the newly linked window is not selected
#[cfg(feature = "tmux_0_8")]
if self.detached {
cmd.push_flag(D_LOWERCASE_KEY);
}
// `[-k]` - if dst-window exists, it is killed, otherwise an error is generated
#[cfg(feature = "tmux_0_8")]
if self.kill {
cmd.push_flag(K_LOWERCASE_KEY);
}
// `[-s src-window]` - src-window
#[cfg(feature = "tmux_0_8")]
if let Some(src_window) = self.src_window {
cmd.push_option(S_LOWERCASE_KEY, src_window);
}
// `[-t dst-window]` - dst-window
#[cfg(feature = "tmux_0_8")]
if let Some(dst_window) = self.dst_window {
cmd.push_option(T_LOWERCASE_KEY, dst_window);
}
cmd
}
}