refactor(keys): Created a auto search key instead of reusing the existing search key to make things easier

This commit is contained in:
2024-12-05 12:29:09 -07:00
parent 678bc77a23
commit 9d0948e124
8 changed files with 51 additions and 31 deletions
+5
View File
@@ -19,6 +19,7 @@ generate_keybindings! {
previous_servarr,
clear,
search,
auto_search,
settings,
filter,
sort,
@@ -82,6 +83,10 @@ pub const DEFAULT_KEYBINDINGS: KeyBindings = KeyBindings {
key: Key::Char('c'),
desc: "clear",
},
auto_search: KeyBinding {
key: Key::Char('S'),
desc: "auto search",
},
search: KeyBinding {
key: Key::Char('s'),
desc: "search",