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 layout;
pub mod layout_cell;
pub mod layout_checksum;

#[cfg(feature = "tmux_1_6")]
pub use layout::Layout;
#[cfg(feature = "tmux_1_6")]
pub use layout_cell::{LayoutCell, LayoutType};
#[cfg(feature = "tmux_1_6")]
pub use layout_checksum::LayoutChecksum;

#[cfg(test)]
#[path = "."]
mod variables_layout_tests {
    mod layout_cell_tests;
    mod layout_checksum_tests;
    mod layout_tests;
}