aboutsummaryrefslogtreecommitdiffstats
path: root/src/bin/ttyplay/input.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-12-05 16:33:34 -0500
committerJesse Luehrs <doy@tozt.net>2021-12-05 16:33:34 -0500
commitf4b04b4e35dc21d2e963abf0d4d3aae3bb61b0a2 (patch)
tree8d0cb794cf04f8c778650e6f847b2513d642d38e /src/bin/ttyplay/input.rs
parent97cd43606097a23b20b761928fcf65db9d42214a (diff)
downloadttyrec-bin-f4b04b4e35dc21d2e963abf0d4d3aae3bb61b0a2.tar.gz
ttyrec-bin-f4b04b4e35dc21d2e963abf0d4d3aae3bb61b0a2.zip
add help
Diffstat (limited to 'src/bin/ttyplay/input.rs')
-rw-r--r--src/bin/ttyplay/input.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bin/ttyplay/input.rs b/src/bin/ttyplay/input.rs
index 266c419..d061e24 100644
--- a/src/bin/ttyplay/input.rs
+++ b/src/bin/ttyplay/input.rs
@@ -30,6 +30,7 @@ pub fn spawn_task(
crate::event::TimerAction::Pause,
),
textmode::Key::Ctrl(b'i') => crate::event::Event::ToggleUi,
+ textmode::Key::Char('?') => crate::event::Event::ToggleHelp,
textmode::Key::Char('+') => crate::event::Event::TimerAction(
crate::event::TimerAction::SpeedUp,
),