- Dec 29, 2018
-
-
Jeremy Soller authored
Fix TIOCGWINSZ type mismatch on DragonFly See merge request redox-os/termion!152
-
Michael Neumann authored
Below is the error message I got before this patch: error[E0308]: mismatched types --> src/sys/unix/size.rs:17:34 | 17 | cvt(ioctl(STDOUT_FILENO, TIOCGWINSZ, &mut size as *mut _))?; | ^^^^^^^^^^ expected u64, found u32 help: you can cast an `u32` to `u64`, which will zero-extend the source value | 17 | cvt(ioctl(STDOUT_FILENO, TIOCGWINSZ.into(), &mut size as *mut _))?; | ^^^^^^^^^^^^^^^^^
-
- Oct 15, 2018
-
-
Jeremy Soller authored
Add ability to suspend/activate raw mode on RawTerminal See merge request redox-os/termion!150
-
- Oct 12, 2018
-
-
Nathan Lilienthal authored
-
- Aug 20, 2018
-
-
Michael Aaron Murphy authored
Reconfigure CI See merge request redox-os/termion!148
-
-
Michael Aaron Murphy authored
Extra derives & performance optimizations See merge request redox-os/termion!149
-
Michael Aaron Murphy authored
-
- Jun 12, 2018
-
-
Jeremy Soller authored
-
- 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
-