mirror of
https://github.com/wez/wezterm.git
synced 2024-11-11 14:46:44 +03:00
67 lines
1.9 KiB
Rust
67 lines
1.9 KiB
Rust
use anyhow::Error;
|
|
use termwiz::caps::Capabilities;
|
|
use termwiz::cell::AttributeChange;
|
|
use termwiz::color::AnsiColor;
|
|
use termwiz::input::{InputEvent, KeyCode, KeyEvent};
|
|
use termwiz::surface::{Change, Position, Surface};
|
|
use termwiz::terminal::buffered::BufferedTerminal;
|
|
use termwiz::terminal::{new_terminal, Terminal};
|
|
|
|
fn main() -> Result<(), Error> {
|
|
let caps = Capabilities::new_from_env()?;
|
|
|
|
let terminal = new_terminal(caps)?;
|
|
|
|
let mut buf = BufferedTerminal::new(terminal)?;
|
|
|
|
let mut block = Surface::new(5, 5);
|
|
block.add_change(Change::ClearScreen(AnsiColor::Blue.into()));
|
|
buf.draw_from_screen(&block, 10, 10);
|
|
|
|
buf.add_change(Change::Attribute(AttributeChange::Foreground(
|
|
AnsiColor::Maroon.into(),
|
|
)));
|
|
buf.add_change("Hello world\r\n");
|
|
buf.add_change(Change::Attribute(AttributeChange::Foreground(
|
|
AnsiColor::Red.into(),
|
|
)));
|
|
buf.add_change("and in red here\r\n");
|
|
buf.add_change(Change::CursorPosition {
|
|
x: Position::Absolute(0),
|
|
y: Position::Absolute(20),
|
|
});
|
|
|
|
buf.flush()?;
|
|
|
|
buf.terminal().set_raw_mode()?;
|
|
loop {
|
|
match buf.terminal().poll_input(None) {
|
|
Ok(Some(input)) => match input {
|
|
InputEvent::Key(KeyEvent {
|
|
key: KeyCode::Escape,
|
|
..
|
|
}) => {
|
|
break;
|
|
}
|
|
InputEvent::Key(KeyEvent {
|
|
key: KeyCode::Char(c),
|
|
..
|
|
}) => {
|
|
buf.add_change(format!("{}", c));
|
|
buf.flush()?;
|
|
}
|
|
_ => {
|
|
print!("{:?}\r\n", input);
|
|
}
|
|
},
|
|
Ok(None) => {}
|
|
Err(e) => {
|
|
print!("{:?}\r\n", e);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
Ok(())
|
|
}
|