4 个版本 (破坏性更新)
0.4.0 | 2022年11月6日 |
---|---|
0.3.0 | 2021年8月29日 |
0.2.0 | 2021年8月21日 |
0.1.0 | 2020年12月26日 |
在 命令行界面 中排名第 679
34KB
801 行
cursormatrix
简单直观的 Rust TUI 库
示例用法
use cursormatrix::{Direction, Event, Input, Term};
fn handle_event(ev: &Event, term: &mut Term) -> bool {
match ev {
&Event::Ctrl(Input::Chars(ref s)) => match s.as_str() {
"C" => return false,
_ => (),
},
&Event::Raw(Input::Arrow(Direction::Up)) => term.move_up().unwrap(),
&Event::Raw(Input::Arrow(Direction::Down)) => term.move_down().unwrap(),
&Event::Raw(Input::BackSpace) => term.cursor.backspace().unwrap(),
&Event::Raw(Input::Chars(ref s)) => term.print(&s).unwrap(),
&Event::TermSize(w, h) => term.matrix.refresh(w, h),
_ => (),
}
true
}
fn main() {
let (mut term, erx) = Term::with_input(true).expect("term");
term.print("edit").unwrap();
loop {
if match erx.recv() {
Ok(ev) => !handle_event(&ev, &mut term),
Err(_) => false,
} {
break;
}
}
}
测试
cargo test
示例
cargo run example --debug
cat FILE | cargo run example --filter
依赖项
~1–12MB
~107K SLoC