3 个版本
0.1.2 | 2023年11月3日 |
---|---|
0.1.1 | 2023年10月10日 |
0.1.0 | 2023年9月22日 |
#811 在 命令行界面
每月362次下载
在 2 个crate中使用(通过 libshpool)
140KB
3K SLoC
shpool_vt100
shpool 的 vt100 crate 的分支,对其进行了一些调整以实现 shpool。有关 vt100 crate 的详细信息,请参阅主 vt100 crate。
lib.rs
:
此crate解析终端字节流,并提供渲染内容的内存表示。
概述
这实际上是图形终端模拟器的终端解析组件,被提取到一个独立的crate中。虽然可以使用此crate构建图形终端模拟器,但它还包含实现想要运行其他终端应用程序的终端应用程序所需的功能 - 例如,例如 screen
或 tmux
程序。
摘要
let mut parser = shpool_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(),
shpool_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"[..],
);
依赖关系
~510–690KB