From 507cf113a31f8c495556d2ba6859384066fcaa76 Mon Sep 17 00:00:00 2001 From: William Casarin Date: Fri, 15 Aug 2025 11:55:29 -0700 Subject: [PATCH] remove hjkl bindings these interfere with input we'll need to come back to this Signed-off-by: William Casarin --- crates/notedeck_columns/src/app.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/notedeck_columns/src/app.rs b/crates/notedeck_columns/src/app.rs index f3c08a25..5792b7ff 100644 --- a/crates/notedeck_columns/src/app.rs +++ b/crates/notedeck_columns/src/app.rs @@ -67,6 +67,7 @@ fn handle_key_events(input: &egui::InputState, columns: &mut Columns) { } = event { match key { + /* egui::Key::J => { columns.select_down(); } @@ -79,6 +80,7 @@ fn handle_key_events(input: &egui::InputState, columns: &mut Columns) { egui::Key::L => { columns.select_left(); } + */ egui::Key::BrowserBack | egui::Key::Escape => { columns.get_selected_router().go_back(); }