29 个不稳定版本
0.15.2 | 2023年2月5日 |
---|---|
0.15.1 | 2021年12月21日 |
0.14.0 | 2021年12月6日 |
0.13.0 | 2021年11月18日 |
0.1.2 | 2016年6月4日 |
#351 在 解析器实现 中
14,036 每月下载次数
在 64 个 包(13 个直接)中使用
135KB
3K SLoC
vt100
这个包解析终端字节流,并提供渲染内容的内存表示。
概述
这基本上是一个图形终端模拟器的终端解析器组件,被提取到一个单独的包中。虽然你可以使用这个包来构建图形终端模拟器,但它还包含实现想要运行其他终端应用程序的终端应用程序所需的功能 - 例如,像 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"[..],
);
依赖关系
~510–690KB