mirror of
https://github.com/wez/wezterm.git
synced 2024-11-27 02:25:28 +03:00
39adbb984d
The recent work on the scrollback made it easier to constrain the search region, so expose those parameters to the Pane::search interface and to the mux protocol. Use those new parameters to constrain quickselect search to 1000 rows above and below the current viewport by default, and add a new parameter to QuickSelectArgs that allows overriding that range. A follow-up commit could make the search/copy overlay issue a series of searches in chunks so that it avoids blocking the UI when searching very large scrollback. refs: https://github.com/wez/wezterm/pull/1317 |
||
---|---|---|
.. | ||
src | ||
Cargo.toml | ||
README.md |
wezterm-term
This crate provides the core of the virtual terminal emulator implementation used by wezterm. The home for this crate is in the wezterm repo and development is tracked at https://github.com/wez/wezterm/.
It is full featured, providing terminal escape sequence parsing, keyboard and mouse input encoding, a model for the screen cells including scrollback, sixel and iTerm2 image support, OSC 8 Hyperlinks and a wide range of terminal cell attributes.
This crate does not provide any kind of gui, nor does it directly
manage a PTY; you provide a std::io::Write
implementation that
could connect to a PTY, and supply bytes to the model via the
advance_bytes
method.
The entrypoint to the crate is the Terminal struct.
License: MIT