tmux_interface/options/common/
constants.rs

1pub const VI: &str = "vi";
2pub const EMACS: &str = "emacs";
3
4pub const ON: &str = "on";
5pub const OFF: &str = "off";
6
7pub const FAILED: &str = "failed";
8
9pub const ALWAYS: &str = "always";
10
11pub const KEEP_LAST: &str = "keep-last";
12pub const KEEP_GROUP: &str = "keep-group";
13
14#[cfg(feature = "tmux_2_6")]
15pub const EXTERNAL: &str = "external";
16
17pub const ANY: &str = "any";
18pub const NONE: &str = "none";
19pub const CURRENT: &str = "current";
20pub const OTHER: &str = "other";
21
22#[cfg(feature = "tmux_2_6")]
23pub const BOTH: &str = "both";
24
25#[cfg(feature = "tmux_3_2")]
26pub const NO_DETACHED: &str = "no-detached";
27
28#[cfg(feature = "tmux_3_4")]
29pub const NUMBER_0: &str = "0";
30#[cfg(feature = "tmux_3_4")]
31pub const NUMBER_1: &str = "1";
32#[cfg(feature = "tmux_2_9")]
33pub const NUMBER_2: &str = "2";
34#[cfg(feature = "tmux_2_9")]
35pub const NUMBER_3: &str = "3";
36#[cfg(feature = "tmux_2_9")]
37pub const NUMBER_4: &str = "4";
38#[cfg(feature = "tmux_2_9")]
39pub const NUMBER_5: &str = "5";
40
41#[cfg(feature = "tmux_1_0")]
42pub const LEFT: &str = "left";
43#[cfg(feature = "tmux_1_0")]
44pub const CENTRE: &str = "centre";
45#[cfg(feature = "tmux_1_0")]
46pub const RIGHT: &str = "right";
47
48#[cfg(feature = "tmux_1_7")]
49pub const TOP: &str = "top";
50#[cfg(feature = "tmux_1_7")]
51pub const BOTTOM: &str = "bottom";
52
53#[cfg(feature = "tmux_1_0")]
54pub const H12: &str = "12";
55#[cfg(feature = "tmux_1_0")]
56pub const H24: &str = "24";
57
58#[cfg(feature = "tmux_2_9")]
59pub const LARGEST: &str = "largest";
60#[cfg(feature = "tmux_2_9")]
61pub const SMALLEST: &str = "smallest";
62#[cfg(feature = "tmux_2_9")]
63pub const MANUAL: &str = "manual";
64#[cfg(feature = "tmux_3_1")]
65pub const LATEST: &str = "latest";