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
use crate::commands::constants::*;
use crate::TmuxCommand;
use std::borrow::Cow;

pub type Prev<'a> = PreviousWindow<'a>;

/// Move to the previous window in the session
///
/// # Manual
///
/// tmux ^0.9:
/// ```text
/// previous-window [-a] [-t target-session]
/// (alias: prev)
/// ```
///
/// tmux ^0.8:
/// ```text
/// previous-window [-t target-session]
/// (alias: prev)
/// ```
#[derive(Clone, Eq, PartialEq, Ord, PartialOrd, Hash, Debug, Default)]
pub struct PreviousWindow<'a> {
    /// `[-a]`
    #[cfg(feature = "tmux_0_9")]
    pub parent_sighup: bool,

    /// `[-t target-session]`
    #[cfg(feature = "tmux_0_8")]
    pub target_session: Option<Cow<'a, str>>,
}

impl<'a> PreviousWindow<'a> {
    pub fn new() -> Self {
        Default::default()
    }

    /// `[-a]`
    #[cfg(feature = "tmux_0_9")]
    pub fn parent_sighup(mut self) -> Self {
        self.parent_sighup = true;
        self
    }

    /// `[-t target-session]`
    #[cfg(feature = "tmux_0_8")]
    pub fn target_session<S: Into<Cow<'a, str>>>(mut self, target_session: S) -> Self {
        self.target_session = Some(target_session.into());
        self
    }

    pub fn build(self) -> TmuxCommand<'a> {
        let mut cmd = TmuxCommand::new();

        cmd.name(PREVIOUS_WINDOW);

        // `[-a]`
        #[cfg(feature = "tmux_0_9")]
        if self.parent_sighup {
            cmd.push_flag(A_LOWERCASE_KEY);
        }

        // `[-t target-session]`
        #[cfg(feature = "tmux_0_8")]
        if let Some(target_session) = self.target_session {
            cmd.push_option(T_LOWERCASE_KEY, target_session);
        }

        cmd
    }
}