notedeck

One damus client to rule them all
git clone git://jb55.com/notedeck
Log | Files | Refs | README | LICENSE

commit 507cf113a31f8c495556d2ba6859384066fcaa76
parent b750c0a927a8de5a661cd72faff2f1052352023f
Author: William Casarin <jb55@jb55.com>
Date:   Fri, 15 Aug 2025 11:55:29 -0700

remove hjkl bindings

these interfere with input

we'll need to come back to this

Signed-off-by: William Casarin <jb55@jb55.com>

Diffstat:
Mcrates/notedeck_columns/src/app.rs | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git 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(); }