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 buffer;
pub mod buffers;
pub mod buffers_ctl;

#[cfg(feature = "tmux_1_7")]
pub use buffer::Buffer;
#[cfg(feature = "tmux_1_7")]
pub use buffers::Buffers;
#[cfg(feature = "tmux_1_7")]
pub use buffers_ctl::BuffersCtl;

#[cfg(test)]
#[path = "."]
mod variables_buffers_tests {
    mod buffer_tests;
    mod buffers_ctl_tests;
    mod buffers_tests;
}