term39 1.5.1

A modern, retro-styled terminal multiplexer with a classic MS-DOS aesthetic
1
2
3
4
5
6
7
8
9
10
11
12
mod ansi_handler;
mod selection;
mod term_grid;
mod terminal_emulator;
pub mod terminal_renderer;

pub use selection::{Position, Selection, SelectionType};
pub use term_grid::{
    CellAttributes, Color, Cursor, CursorShape, NamedColor, TerminalCell, TerminalGrid,
};
pub use terminal_emulator::{ShellConfig, TerminalEmulator};
pub use terminal_renderer::TerminalRenderer;