- Jul 09, 2019
-
-
Jeremy Soller authored
Make the keys return their inner error, if any. See merge request redox-os/termion!162
-
- Jul 06, 2019
-
-
Jeremy Soller authored
Add terminal_size_pixels() to expose terminal's pixel size See merge request redox-os/termion!163
-
-
Jeremy Soller authored
-
Jeremy Soller authored
-
Jeremy Soller authored
-
Jeremy Soller authored
-
- Jun 26, 2019
-
-
AdminXVII authored
Make the keys return their inner error, if any. For example, when permission to access the TTY is denied, don't loop infinitely and instead return to the outer scope to error and exit (or not) there.
-
- Jun 12, 2019
-
-
Jeremy Soller authored
Backtab key See merge request redox-os/termion!157
-
Jeremy Soller authored
Use stdout to get and set terminal attributes See merge request redox-os/termion!161
-
-
- Apr 21, 2019
-
- Apr 06, 2019
-
-
Jeremy Soller authored
Make Color extend Debug See merge request redox-os/termion!159
-
- Mar 11, 2019
-
-
Ophir LOJKINE authored
-
- Feb 20, 2019
-
-
scauligi authored
-
- Jan 28, 2019
-
-
Jeremy Soller authored
Add a HideCursor wrapper type acting like AlternateScreen See merge request redox-os/termion!154
-
Matthias Devlamynck authored
-
- 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
-