diff options
| author | 2026-03-09 00:43:26 -0400 | |
|---|---|---|
| committer | 2026-03-09 00:43:26 -0400 | |
| commit | 744c5cc2960cbc29802739bbb5851cfa429316b6 (patch) | |
| tree | 7deec9c01a85ac674f5712bf5428fa437a654eac /src/main.rs | |
| parent | fixing text wrap miscalculation on long words (diff) | |
add scroll and scroll bar indicator to members list
Diffstat (limited to '')
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs index b87ee8d..b81eff8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -105,6 +105,8 @@ async fn run( (KeyModifiers::NONE | KeyModifiers::SHIFT, KeyCode::Char(c)) => { app.input_insert(c); } + (KeyModifiers::SHIFT, KeyCode::Up) => app.members_scroll_up(), + (KeyModifiers::SHIFT, KeyCode::Down) => app.members_scroll_down(), (_, KeyCode::Backspace) => app.input_backspace(), (_, KeyCode::Left) => app.cursor_left(), (_, KeyCode::Right) => app.cursor_right(), |
