From bb7f00dbef3bf4c7c00c1969cb0089de51bd9ba9 Mon Sep 17 00:00:00 2001 From: Conrad Ludgate Date: Sun, 26 Mar 2023 15:47:38 +0100 Subject: chore: use fork of skim (#803) * use fuzzy-matcher instead of skim switch to a search-engine abstraction * fmt * fix deprecated warnings --- src/command/client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/command/client.rs') diff --git a/src/command/client.rs b/src/command/client.rs index 551b2225..2a825638 100644 --- a/src/command/client.rs +++ b/src/command/client.rs @@ -53,7 +53,7 @@ impl Cmd { Self::History(history) => history.run(&settings, &mut db).await, Self::Import(import) => import.run(&mut db).await, Self::Stats(stats) => stats.run(&mut db, &settings).await, - Self::Search(search) => search.run(&mut db, &mut settings).await, + Self::Search(search) => search.run(db, &mut settings).await, #[cfg(feature = "sync")] Self::Sync(sync) => sync.run(settings, &mut db).await, } -- cgit v1.3.1