- Jun 10, 2018
-
-
Michael Aaron Murphy authored
-
Michael Aaron Murphy authored
-
Michael Aaron Murphy authored
-
- May 09, 2018
-
-
Alex Yankov authored
-
Josh Mcguigan authored
-
Daniel Mueller authored
The import of std::ascii::AsciiExt in src/event.rs is unused. Remove it. > warning: unused import: `std::ascii::AsciiExt` > --> src/event.rs:4:5 > | > 4 | use std::ascii::AsciiExt; > | ^^^^^^^^^^^^^^^^^^^^ > | > = note: #[warn(unused_imports)] on by default
-
Daniel Mueller authored
This change removes an unused 'mut' qualifier of the 'source' variable in src/input.rs. > warning: variable does not need to be mutable > --> src/input.rs:52:13 > | > 52 | let mut source = &mut self.source; > | ----^^^^^^ > | | > | help: remove this `mut` > | > = note: #[warn(unused_mut)] on by default
-
- May 08, 2018
-
-
Josh Mcguigan authored
Fix detect cursor position reading extra byte
-
Josh Mcguigan authored
-
- May 07, 2018
-
-
Jeremy Soller authored
Update references to repository
-
Robert Metcalf authored
-
- Nov 22, 2017
-
-
ticki authored
use `TIOCGWINSZ` directly from `libc`
-
- Oct 11, 2017
-
-
Niv Kaminer authored
-
- Aug 03, 2017
-
-
ticki authored
-
ticki authored
Move system specific features into sys module
-
Jeremy Soller authored
-
- Aug 01, 2017
-
-
Jeremy Soller authored
-
- Jul 27, 2017
-
-
ticki authored
Update tty.rs
-
Jeremy Soller authored
-
- Jul 24, 2017
- Jul 23, 2017
-
-
Jeremy Soller authored
-
- Jul 16, 2017
-
-
ticki authored
Add an Iterator on Read that provides both the parsed event and the byte sequence that defines it
-
- Jul 12, 2017
-
-
ftilde authored
- In addition to Events it preserves the byte sequence that created an event. This is useful, e.g., for implementing a terminal multiplexer where the raw input should in some cases be passed on to another tty. - In order to ensure backwards compatibility, the function that creates the trait is implemented in a separate extension trait.
-
- Jun 10, 2017
- Jun 09, 2017
-
-
Jeremy Soller authored
-
- Jun 03, 2017
-
-
ticki authored
run travis builds on osx also
-
- Jun 01, 2017
-
-
Jim McGrath authored
-
- Apr 25, 2017
-
-
ticki authored
-
- Mar 29, 2017
-
-
ticki authored
fix #99
-
- Mar 28, 2017
-
-
IGI-111 authored
Add support for F1-F5 in the linux tty.
-
- Mar 24, 2017
-
-
ticki authored
-
ticki authored
-
ticki authored
added cursor position detection
-
IGI-111 authored
parse_utf8_char() makes the assumption that at least four bytes or one UTF-8 glyph are still to read in the input.
-
IGI-111 authored
Codes of the form `ESC [ < 3 ; Cx ; Cy` were not supported before.
-
unrelentingtech authored
At least on FreeBSD and OpenBSD, TIOCGWINSZ == 0x40087468 just like on macOS, so change the definition from not-macOS/macOS to Linux/non-Linux.
-
- Mar 13, 2017
-
-
IGI-111 authored
-