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
//! The [`control_mode`][`crate::control_mode`] module contains functions for working in
//! control mode of tmux
//!
//! # See Also
//! * [Tmux Manual -> Control Mode](https://man7.org/linux/man-pages/man1/tmux.1.html#CONTROL_MODE)
//!
pub mod constants;
#[cfg(feature = "tmux_1_8")]
pub mod control_mode;

pub mod control_mode_ctl;

#[cfg(test)]
#[cfg(feature = "tmux_1_8")]
pub mod control_mode_tests;