Skip to content
Snippets Groups Projects
Commit 07301d4c authored by ticki's avatar ticki
Browse files

Merge branch 'master' of github.com:Ticki/libterm

parents 8572ee6e 3c123df1
No related branches found
No related tags found
No related merge requests found
......@@ -40,6 +40,7 @@ version of Termion.
| 0.1.0 | 1.0.0
|--------------------------------|---------------------------
| `use termion::IntoRawMode` | `use termion::raw::IntoRawMode`
| `use termion::TermRead` | `use termion::input::TermRead`
| `stdout.color(color::Red);` | `write!(stdout, "{}", color::Fg(color::Red));`
| `stdout.color_bg(color::Red);` | `write!(stdout, "{}", color::Bg(color::Red));`
| `stdout.goto(x, y);` | `write!(stdout, "{}", cursor::Goto(x, y));`
......
......@@ -13,6 +13,7 @@ fn main() {
termion::clear::All,
termion::cursor::Goto(1, 1),
termion::cursor::Hide).unwrap();
stdout.flush().unwrap();
for c in stdin.keys() {
write!(stdout, "{}{}", termion::cursor::Goto(1, 1), termion::clear::CurrentLine).unwrap();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment