From d98d429b5cfafcc10cac8502f286ce63616cd062 Mon Sep 17 00:00:00 2001 From: Bill Thiede Date: Sun, 25 Aug 2024 19:37:37 -0700 Subject: [PATCH] notmuch: add TODO --- notmuch/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/notmuch/src/lib.rs b/notmuch/src/lib.rs index 39042f4..2eb367d 100644 --- a/notmuch/src/lib.rs +++ b/notmuch/src/lib.rs @@ -518,6 +518,7 @@ impl Notmuch { } pub fn count(&self, query: &str) -> Result { + // TODO: compare speed of notmuch count for * w/ and w/o --output=threads let res = self.run_notmuch(["count", "--output=threads", query])?; // Strip '\n' from res. let s = std::str::from_utf8(&res[..res.len() - 1])?;