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
use crate::commands::constants::*;
use crate::TmuxCommand;
use std::borrow::Cow;
pub type LsP<'a> = ListPanes<'a>;
// XXX: better return type
/// List panes on the server
///
/// # Manual
///
/// tmux ^1.6:
/// ```text
/// list-panes [-as] [-F format] [-t target]
/// (alias: lsp)
/// ```
///
/// tmux ^1.5:
/// ```text
/// list-panes [-as] [-t target]
/// (alias: lsp)
/// ```
///
/// tmux ^0.8:
/// ```text
/// list-panes [-t target]
/// (alias: lsp)
/// ```
#[derive(Clone, Eq, PartialEq, Ord, PartialOrd, Hash, Debug, Default)]
pub struct ListPanes<'a> {
/// `[-a]`
pub all: bool,
/// `[-s]`
pub session: bool,
/// `[-F format]`
pub format: Option<Cow<'a, str>>,
/// `[-t target]`
pub target: Option<Cow<'a, str>>,
}
impl<'a> ListPanes<'a> {
pub fn new() -> Self {
Default::default()
}
/// `[-a]`
pub fn all(mut self) -> Self {
self.all = true;
self
}
/// `[-s]`
pub fn session(mut self) -> Self {
self.session = true;
self
}
/// `[-F format]`
pub fn format<S: Into<Cow<'a, str>>>(mut self, format: S) -> Self {
self.format = Some(format.into());
self
}
/// `[-t target]`
pub fn target<S: Into<Cow<'a, str>>>(mut self, target: S) -> Self {
self.target = Some(target.into());
self
}
pub fn build(self) -> TmuxCommand<'a> {
let mut cmd = TmuxCommand::new();
cmd.name(LIST_PANES);
// `[-a]`
if self.all {
cmd.push_flag(A_LOWERCASE_KEY);
}
// `[-s]`
if self.session {
cmd.push_flag(S_LOWERCASE_KEY);
}
// `[-F format]`
if let Some(format) = self.format {
cmd.push_option(F_UPPERCASE_KEY, format);
}
// `[-t target]`
if let Some(target) = self.target {
cmd.push_option(T_LOWERCASE_KEY, target);
}
cmd
}
}