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
12
13
14
15
16
17
18
pub mod client;
pub mod clients;
pub mod clients_ctl;

#[cfg(feature = "tmux_1_6")]
pub use client::Client;
#[cfg(feature = "tmux_1_6")]
pub use clients::Clients;
#[cfg(feature = "tmux_1_6")]
pub use clients_ctl::ClientsCtl;

#[cfg(test)]
#[path = "."]
mod variables_clients_tests {
    mod client_tests;
    mod clients_ctl_tests;
    mod clients_tests;
}