tree: 303b3f7f19b9e976423a23104fbd1d248a485832 [path history] [tgz]
  1. examples/
  2. foos/
  3. src/
  4. .cargo-checksum.json
  5. Cargo.toml
  6. CHANGELOG.md
  7. LICENSE-APACHE
  8. LICENSE-MIT
  9. OWNERS
  10. README.md
  11. vim10m_match
  12. vim10m_table
third_party/rust_crates/vendor/vte-0.3.3/README.md

vte

Build Status Crates.io Version

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.

Developer Notes

If contributing to either vte or the utf8parse crate and modifying a table.rs.in file, make sure to cargo run from the codegen folder so that the compiled tables are updated.