tuimux 0.2.0

A fast Rust TUI for everything tmux, with full CRUD support.
Documentation
1
2
3
4
5
6
7
8
9
10
//! API to interact with tmux sessions.

mod inspect;
mod manage;

pub use inspect::{capture_preview, fetch_all_sessions, get_session, get_session_name, list_sessions};
pub use manage::{
    attach_to_session, attach_to_window, close_session, close_window, create_session, create_session_with_path,
    create_window, create_window_with_path, rename_session, rename_window, session_exists,
};