diff options
author | Joe Wilm <joe@jwilm.com> | 2016-09-19 07:59:55 -0700 |
---|---|---|
committer | Joe Wilm <joe@jwilm.com> | 2016-09-19 07:59:55 -0700 |
commit | 5509849473c7549c95b6a3ef87af8075c50d5da7 (patch) | |
tree | e6b7d8e0d448d3887511b66cb01d1a8e854bc10d /src/lib.rs | |
parent | 955bc84adfc5719455038653edd40725416df9c2 (diff) | |
download | r-alacritty-vte-5509849473c7549c95b6a3ef87af8075c50d5da7.tar.gz r-alacritty-vte-5509849473c7549c95b6a3ef87af8075c50d5da7.tar.bz2 r-alacritty-vte-5509849473c7549c95b6a3ef87af8075c50d5da7.zip |
Fix bug with OSC string termination
Apparently 0x07 is frequently used. Not handling this causes SSH prompts
to never appear!
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -20,6 +20,11 @@ //! //! Just type `:q` to exit. //! +//! # Differences from original state machine description +//! +//! * UTF-8 Support for Input +//! * OSC Strings can be terminated by 0x07 +//! //! [`Parser`]: struct.Parser.html //! [`Perform`]: trait.Perform.html //! [Paul Williams' ANSI parser state machine]: http://vt100.net/emu/dec_ansi_parser |