tmux_interface 0.4.0

Rust language library for communication with TMUX via CLI
Documentation
pub mod constants;

#[cfg(feature = "tmux_1_0")]
pub mod clock_mode_style;
#[cfg(all(feature = "tmux_1_0", not(feature = "tmux_2_1")))]
pub mod mode_mouse;
#[cfg(feature = "tmux_2_3")]
pub mod pane_border_status;
#[cfg(feature = "tmux_2_9")]
pub mod window_size;

pub use constants::*;

#[cfg(feature = "tmux_1_0")]
pub use clock_mode_style::ClockModeStyle;
#[cfg(all(feature = "tmux_1_0", not(feature = "tmux_2_1")))]
pub use mode_mouse::ModeMouse;
#[cfg(feature = "tmux_2_3")]
pub use pane_border_status::PaneBorderStatus;
#[cfg(feature = "tmux_2_9")]
pub use window_size::WindowSize;

#[cfg(test)]
#[path = "."]
mod window_tests {
    #[cfg(feature = "tmux_1_0")]
    pub mod clock_mode_style_tests;
    #[cfg(feature = "tmux_2_3")]
    pub mod pane_border_status_tests;
    #[cfg(feature = "tmux_2_9")]
    pub mod window_size_tests;
}