tmux_interface 0.4.0

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

    assert_eq!(StatusJustify::Left.to_string(), "left");
    assert_eq!(StatusJustify::Centre.to_string(), "centre");
    assert_eq!(StatusJustify::Right.to_string(), "right");
}