From e9b422b2db0653b08bce5eb05c23c8a6a3fc8d0b Mon Sep 17 00:00:00 2001 From: Jeremy Wall Date: Sun, 19 Jan 2025 16:31:32 -0500 Subject: [PATCH] wip: Some todos for later --- docs/index.md | 1 + src/ui/mod.rs | 3 +++ 2 files changed, 4 insertions(+) diff --git a/docs/index.md b/docs/index.md index 36ebf95..cbf1ad6 100644 --- a/docs/index.md +++ b/docs/index.md @@ -46,6 +46,7 @@ table and between the sheets using the following keybinds: * `k` ⬆️, will move one cell up. * `d` will delete the contents of the selected cell leaving style untouched * `D` will delete the contents of the selected cell including any style +* `gg` will go to the top row in the current column **Sheet Navigation** diff --git a/src/ui/mod.rs b/src/ui/mod.rs index ba05d9d..71bfb4b 100644 --- a/src/ui/mod.rs +++ b/src/ui/mod.rs @@ -294,6 +294,9 @@ impl<'ws> Workspace<'ws> { } fn render_help_text(&self) -> Vec { + // TODO(zaphar): We should be sourcing these from our actual help documentation. + // Ideally we would also render the markdown content properly. + // https://github.com/zaphar/sheetsui/issues/22 match self.state.modality() { Modality::Navigate => vec![ "Navigate Mode:".to_string(),