Provide search functionality through the TUI #134

Merged
wojtek merged 35 commits from 24---provide-search-functionality-through-the-tui into main 2024-02-18 22:12:42 +01:00
2 changed files with 1 additions and 2 deletions
Showing only changes of commit 652dda3016 - Show all commits

View File

@ -60,4 +60,3 @@ rustup toolchain install nightly
``` sh ``` sh
env BEETSDIR=./ rustup run nightly cargo bench --all-features --all-targets env BEETSDIR=./ rustup run nightly cargo bench --all-features --all-targets
``` ```

View File

@ -94,7 +94,7 @@ impl<APP: IAppInteract> IEventHandlerPrivate<APP> for EventHandler {
KeyCode::PageDown => app.increment_selection(Delta::Page), KeyCode::PageDown => app.increment_selection(Delta::Page),
// Toggle info overlay. // Toggle info overlay.
KeyCode::Char('m') | KeyCode::Char('M') => app.show_info_overlay(), KeyCode::Char('m') | KeyCode::Char('M') => app.show_info_overlay(),
// Toggle reload meny. // Toggle reload menu.
KeyCode::Char('g') | KeyCode::Char('G') => app.show_reload_menu(), KeyCode::Char('g') | KeyCode::Char('G') => app.show_reload_menu(),
// Toggle search. // Toggle search.
KeyCode::Char('s') | KeyCode::Char('S') => { KeyCode::Char('s') | KeyCode::Char('S') => {