tmux_interface 0.4.0

Rust language library for communication with TMUX via CLI
Documentation
//! Module for working with session options
pub mod builder;
pub mod common;
pub mod ctl;

pub mod session_options;

pub use builder::*;
pub use common::*;
pub use ctl::*;

pub use session_options::*;

#[cfg(test)]
#[path = "."]
mod session_tests {
    #[cfg(feature = "tmux_1_0")]
    pub mod session_options_tests;
}