From 0c48c5973f62de096dcd042d28ec2a9c62ef9b21 Mon Sep 17 00:00:00 2001 From: ClementTsang Date: Sat, 15 Feb 2020 18:06:17 -0500 Subject: More refactoring of some code to make it cleaner. --- src/main.rs | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) (limited to 'src') diff --git a/src/main.rs b/src/main.rs index 4c944be7..44cb2d5a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -342,18 +342,14 @@ fn handle_key_event_or_break( } } else if let KeyModifiers::SHIFT = event.modifiers { match event.code { - KeyCode::Left | KeyCode::Char('h') | KeyCode::Char('H') => { - app.move_widget_selection_left() - } - KeyCode::Right | KeyCode::Char('l') | KeyCode::Char('L') => { - app.move_widget_selection_right() - } - KeyCode::Up | KeyCode::Char('k') | KeyCode::Char('K') => { - app.move_widget_selection_up() - } - KeyCode::Down | KeyCode::Char('j') | KeyCode::Char('J') => { - app.move_widget_selection_down() - } + KeyCode::Left => app.move_widget_selection_left(), + KeyCode::Char('h') | KeyCode::Char('H') => app.on_char_key('H'), + KeyCode::Right => app.move_widget_selection_right(), + KeyCode::Char('l') | KeyCode::Char('L') => app.on_char_key('L'), + KeyCode::Up => app.move_widget_selection_up(), + KeyCode::Char('k') | KeyCode::Char('K') => app.on_char_key('K'), + KeyCode::Down => app.move_widget_selection_down(), + KeyCode::Char('j') | KeyCode::Char('J') => app.on_char_key('J'), KeyCode::Char('/') | KeyCode::Char('?') => app.on_char_key('?'), _ => {} } -- cgit v1.2.3