tmux_interface 0.4.0

Rust language library for communication with TMUX via CLI
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[test]
#[cfg(feature = "tmux_0_8")]
fn action() {
    use crate::Action;

    assert_eq!(Action::Any.to_string(), "any");
    assert_eq!(Action::None.to_string(), "none");
    assert_eq!(Action::Current.to_string(), "current");
    #[cfg(feature = "tmux_2_1")]
    assert_eq!(Action::Other.to_string(), "other");
}