par-term 0.30.5

Cross-platform GPU-accelerated terminal emulator with inline graphics support (Sixel, iTerm2, Kitty)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! tmux notification handling and gateway session management.
//!
//! ## Sub-modules
//!
//! - `notifications`: `check_tmux_notifications` and all notification event handlers
//!   (session-changed, window-add/close/rename, layout-change, output, pane-focus,
//!   session-ended, pause/continue, sync-action dispatch).
//! - `gateway`: Gateway session lifecycle (initiate, attach, disconnect), input routing
//!   (send_input_via_tmux, paste_via_tmux, prefix key), pane operations
//!   (split/close), and clipboard/resize sync.
//! - `gateway_profile`: Profile auto-application on tmux session connect.

mod gateway;
mod gateway_input;
mod gateway_profile;
mod notifications;
pub(crate) mod tmux_state;