- 11 Mar, 2019 1 commit
-
-
Ophir LOJKINE authored
-
- 28 Jan, 2019 2 commits
-
-
Jeremy Soller authored
Add a HideCursor wrapper type acting like AlternateScreen See merge request redox-os/termion!154
-
Matthias Devlamynck authored
-
- 29 Dec, 2018 2 commits
-
-
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 _))?; | ^^^^^^^^^^^^^^^^^
-
- 15 Oct, 2018 1 commit
-
-
Jeremy Soller authored
Add ability to suspend/activate raw mode on RawTerminal See merge request redox-os/termion!150
-
- 12 Oct, 2018 1 commit
-
-
Nathan Lilienthal authored
-
- 20 Aug, 2018 4 commits
-
-
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
-
- 12 Jun, 2018 1 commit
-
-
Jeremy Soller authored
-
- 10 Jun, 2018 3 commits
-
-
Michael Aaron Murphy authored
-
Michael Aaron Murphy authored
-
Michael Aaron Murphy authored
-
- 09 May, 2018 4 commits
-
-
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
-
- 08 May, 2018 2 commits
-
-
Josh Mcguigan authored
Fix detect cursor position reading extra byte
-
Josh Mcguigan authored
-
- 07 May, 2018 2 commits
-
-
Jeremy Soller authored
Update references to repository
-
Robert Metcalf authored
-
- 22 Nov, 2017 1 commit
-
-
ticki authored
use `TIOCGWINSZ` directly from `libc`
-
- 11 Oct, 2017 1 commit
-
-
Niv Kaminer authored
-
- 03 Aug, 2017 3 commits
-
-
ticki authored
-
ticki authored
Move system specific features into sys module
-
Jeremy Soller authored
-
- 01 Aug, 2017 1 commit
-
-
Jeremy Soller authored
-
- 27 Jul, 2017 2 commits
-
-
ticki authored
Update tty.rs
-
Jeremy Soller authored
-
- 24 Jul, 2017 3 commits
- 23 Jul, 2017 1 commit
-
-
Jeremy Soller authored
-
- 16 Jul, 2017 1 commit
-
-
ticki authored
Add an Iterator on Read that provides both the parsed event and the byte sequence that defines it
-
- 12 Jul, 2017 1 commit
-
-
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.
-
- 11 Jul, 2017 1 commit
-
-
Matthias Devlamynck authored
-
- 10 Jun, 2017 2 commits