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
pub mod constants;

#[cfg(feature = "tmux_3_0")]
pub mod remain_on_exit;

pub use constants::*;

#[cfg(feature = "tmux_3_0")]
pub use remain_on_exit::RemainOnExit;

#[cfg(test)]
#[path = "."]
mod pane_tests {
   #[cfg(feature = "tmux_3_0")]
    pub mod remain_on_exit_tests;
}