Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Treat uppercase Q as quit shortcut
  • Loading branch information
puneetdixit200 committed May 23, 2026
commit 2f3f92aba742c84f264f5ea2ed98974fe6575536
2 changes: 1 addition & 1 deletion src/event.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ pub fn handle_key_event_or_break(

if event.modifiers.is_empty() {
match event.code {
KeyCode::Char('q') if !app.is_in_any_search() => return true,
KeyCode::Char('q' | 'Q') if !app.is_in_any_search() => return true,
KeyCode::End => app.skip_to_last(),
KeyCode::Home => app.skip_to_first(),
KeyCode::Up => app.on_up_key(),
Expand Down
Loading