tmux_interface 0.4.0

Rust language library for communication with TMUX via CLI
Documentation
1
2
3
4
5
6
7
#[test]
fn status_keys() {
    use crate::StatusKeys;

    assert_eq!(StatusKeys::Vi.to_string(), "vi");
    assert_eq!(StatusKeys::Emacs.to_string(), "emacs");
}