Skip to main content

par_term_scripting/
lib.rs

1//! Scripting and observer system for par-term terminal emulator.
2//!
3//! Provides observer-pattern event forwarding from the terminal core to
4//! script subprocesses, along with per-tab script lifecycle management.
5
6pub mod manager;
7pub mod observer;
8pub mod process;
9pub mod protocol;