release/0.3.0 #6

Merged
nvrl merged 5 commits from release/0.3.0 into main 2026-03-17 09:30:26 +01:00
Showing only changes of commit 84945b9d83 - Show all commits

View File

@@ -121,6 +121,7 @@ where
self.app.running = false; self.app.running = false;
} else if c_str == self.config.keybinds.search { } else if c_str == self.config.keybinds.search {
self.app.mode = Mode::Search; self.app.mode = Mode::Search;
self.app.search_query.clear();
self.app.status_message = Some(format!("{} ", self.config.keybinds.search)); self.app.status_message = Some(format!("{} ", self.config.keybinds.search));
} else if c_str == self.config.keybinds.next_match { } else if c_str == self.config.keybinds.next_match {
self.app.jump_next_match(); self.app.jump_next_match();