diff options
author | James Campos <james.r.campos@gmail.com> | 2020-04-23 16:12:50 -0700 |
---|---|---|
committer | James Campos <james.r.campos@gmail.com> | 2020-04-23 16:12:50 -0700 |
commit | 3e7b40dec9bc42ff4d450725625656002e4885b9 (patch) | |
tree | 616117ea1ce4dc6974cc2ee49829b5d585e12fcd /src | |
parent | 29f8015a1d57d4d38a6c4db46c4755687be1dae7 (diff) | |
download | bk-3e7b40dec9bc42ff4d450725625656002e4885b9.tar.gz |
more keys
Diffstat (limited to 'src')
-rw-r--r-- | src/main.rs | 26 |
1 files changed, 21 insertions, 5 deletions
diff --git a/src/main.rs b/src/main.rs index b34340e..02e6b52 100644 --- a/src/main.rs +++ b/src/main.rs @@ -213,13 +213,13 @@ impl Bk { } fn run_nav(&mut self, e: Event) { match e { - _ => self.mode = Mode::Read + _ => self.mode = Mode::Read, } } fn run_read(&mut self, e: Event) -> bool { match e { Event::Key(e) => match e.code { - KeyCode::Char('q') => return false, + KeyCode::Esc | KeyCode::Char('q') => return false, KeyCode::Tab => self.mode = Mode::Nav, KeyCode::Char('?') => self.mode = Mode::Help, KeyCode::Char('p') => { @@ -234,10 +234,23 @@ impl Bk { self.pos = 0; } } + KeyCode::End | KeyCode::Char('G') => { + self.pos = (self.chapter.len() / self.rows) * self.rows; + } + KeyCode::Home | KeyCode::Char('g') => self.pos = 0, + KeyCode::Char('d') => { + self.scroll_down(self.rows / 2); + } + KeyCode::Char('u') => { + self.scroll_up(self.rows / 2); + } KeyCode::Up | KeyCode::Char('k') => { self.scroll_up(1); } - KeyCode::Left | KeyCode::PageUp | KeyCode::Char('h') => { + KeyCode::Left + | KeyCode::PageUp + | KeyCode::Char('b') + | KeyCode::Char('h') => { self.scroll_up(self.rows); } KeyCode::Down | KeyCode::Char('j') => { @@ -245,6 +258,7 @@ impl Bk { } KeyCode::Right | KeyCode::PageDown + | KeyCode::Char('f') | KeyCode::Char('l') | KeyCode::Char(' ') => { self.scroll_down(self.rows); @@ -278,7 +292,8 @@ impl Bk { terminal::Clear(terminal::ClearType::All), cursor::MoveTo(0, 0), Print("TODO: nav") - ).unwrap(); + ) + .unwrap(); stdout.flush().unwrap(); } fn render_help(&self) { @@ -288,7 +303,8 @@ impl Bk { terminal::Clear(terminal::ClearType::All), cursor::MoveTo(0, 0), Print("TODO: help text") - ).unwrap(); + ) + .unwrap(); stdout.flush().unwrap(); } fn render_read(&self) { |