From 6b2a0e19189d8aa4729af3c94de2cd45d01b8c28 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Mon, 8 Sep 2025 21:56:40 +0200 Subject: [PATCH] neomutt: Ignore khard deprecation warnings --- office/.config/neomutt/settings | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/office/.config/neomutt/settings b/office/.config/neomutt/settings index 6e71428..87f7d51 100644 --- a/office/.config/neomutt/settings +++ b/office/.config/neomutt/settings @@ -92,5 +92,8 @@ unignore From To Cc Bcc Date Subject Message-ID unhdr_order * unignore From To Cc Bcc Date Subject Message-ID -set query_command = "khard email --parsable --search-in-source-files '%s'" -set nm_query_type = "threads" # Makes notmuch return threads rather than messages +# TODO: Remove stderr ignore when khard fixes its deprecation warnings +# https://github.com/lucc/khard/issues/335 +set query_command = "khard email --parsable --search-in-source-files '%s' 2>/dev/null" +# Makes notmuch return threads rather than messages +set nm_query_type = "threads"