3 个不稳定版本
0.7.0 | 2024年6月26日 |
---|---|
0.1.1 | 2022年10月2日 |
0.1.0 | 2022年8月9日 |
#279 在 命令行界面
333 每月下载量
在 3 crates 中使用
155KB
4K SLoC
vt100
此 crate 解析终端字节流并提供渲染内容的内存表示。
概述
这实际上是图形终端模拟器的终端解析器组件,提取到一个独立的 crate 中。虽然可以使用此 crate 来构建图形终端模拟器,但它还包含实现希望运行其他终端应用程序的终端应用程序所需的功能 - 例如,像 screen
或 tmux
这样的程序。
概要
let mut parser = vt100::Parser::new(24, 80, 0);
let screen = parser.screen().clone();
parser.process(b"this text is \x1b[31mRED\x1b[m");
assert_eq!(
parser.screen().cell(0, 13).unwrap().fgcolor(),
vt100::Color::Idx(1),
);
let screen = parser.screen().clone();
parser.process(b"\x1b[3D\x1b[32mGREEN");
assert_eq!(
parser.screen().contents_formatted(),
&b"\x1b[?25h\x1b[m\x1b[H\x1b[Jthis text is \x1b[32mGREEN"[..],
);
assert_eq!(
parser.screen().contents_diff(&screen),
&b"\x1b[1;14H\x1b[32mGREEN"[..],
);
依赖项
~24–36MB
~633K SLoC