From e81d862e1e65173b900e4f2c74ef1af2ce129843 Mon Sep 17 00:00:00 2001 From: Dave Taht Date: Fri, 20 Jan 2023 05:14:03 +0000 Subject: [PATCH] lqtop: still simulating --- src/rust/lqtop/src/main.rs | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/src/rust/lqtop/src/main.rs b/src/rust/lqtop/src/main.rs index 89db4080..3ca559af 100644 --- a/src/rust/lqtop/src/main.rs +++ b/src/rust/lqtop/src/main.rs @@ -319,6 +319,33 @@ pub async fn main() -> Result<()> { code: KeyCode::Char('S'), modifiers: KeyModifiers::NONE, }) => break, // FIXME Filter on Plan Speed + Event::Key(KeyEvent { + code: KeyCode::Char('z'), + modifiers: KeyModifiers::NONE, + }) => break, // FIXME Zoom in + Event::Key(KeyEvent { + code: KeyCode::Char('Z'), + modifiers: KeyModifiers::NONE, + }) => break, // FIXME Zoom out + // Now I am Dreaming + Event::Key(KeyEvent { + code: KeyCode::Char('C'), + modifiers: KeyModifiers::NONE, + }) => break, // FIXME Capture what I am filtering on + Event::Key(KeyEvent { + code: KeyCode::Char('F'), + modifiers: KeyModifiers::NONE, + }) => break, // FIXME Freeze what I am filtering on + Event::Key(KeyEvent { + code: KeyCode::Char('S'), + modifiers: KeyModifiers::CONTROL, + }) => break, // FIXME Step through what I captured on + Event::Key(KeyEvent { + code: KeyCode::Char('R'), + modifiers: KeyModifiers::CONTROL, + }) => break, // FIXME Step backwards what I captured on + // Left and right cursors also + // Dreaming Less now // Use TAB for autocompletion // If I have moved into a panel, the following are ideas Event::Key(KeyEvent {