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解析器实现

Download history 3045/week @ 2024-03-14 3356/week @ 2024-03-21 2787/week @ 2024-03-28 2901/week @ 2024-04-04 3249/week @ 2024-04-11 3540/week @ 2024-04-18 3200/week @ 2024-04-25 3546/week @ 2024-05-02 3757/week @ 2024-05-09 4017/week @ 2024-05-16 3675/week @ 2024-05-23 4451/week @ 2024-05-30 3050/week @ 2024-06-06 3616/week @ 2024-06-13 3570/week @ 2024-06-20 3061/week @ 2024-06-27

14,036 每月下载次数
64 包(13 个直接)中使用

MIT 许可证

135KB
3K SLoC

vt100

这个包解析终端字节流,并提供渲染内容的内存表示。

概述

这基本上是一个图形终端模拟器的终端解析器组件,被提取到一个单独的包中。虽然你可以使用这个包来构建图形终端模拟器,但它还包含实现想要运行其他终端应用程序的终端应用程序所需的功能 - 例如,像 screentmux 这样的程序。

摘要

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