Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alacritty/vte
Parser for virtual terminal emulators
https://github.com/alacritty/vte
parser rust terminal vte
Last synced: 25 days ago
JSON representation
Parser for virtual terminal emulators
- Host: GitHub
- URL: https://github.com/alacritty/vte
- Owner: alacritty
- License: apache-2.0
- Created: 2016-09-12T17:50:51.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-04-01T12:38:46.000Z (8 months ago)
- Last Synced: 2024-04-14T09:55:56.803Z (7 months ago)
- Topics: parser, rust, terminal, vte
- Language: Rust
- Homepage: https://docs.rs/vte/
- Size: 180 KB
- Stars: 221
- Watchers: 11
- Forks: 55
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
vte
===[![Build Status](https://travis-ci.org/alacritty/vte.svg?branch=master)](https://travis-ci.org/alacritty/vte)
[![Crates.io Version](https://img.shields.io/crates/v/vte.svg)](https://crates.io/crates/vte/)Parser for implementing virtual terminal emulators in Rust.
The parser is implemented according to [Paul Williams' ANSI parser state
machine]. The state machine doesn't assign meaning to the parsed data and is
thus not itself sufficient for writing a terminal emulator. Instead, it is
expected that an implementation of the `Perform` trait which does something
useful with the parsed data. The `Parser` handles the book keeping, and the
`Perform` gets to simply handle actions.See the [docs] for more info.
[Paul Williams' ANSI parser state machine]: https://vt100.net/emu/dec_ansi_parser
[docs]: https://docs.rs/crate/vte/