summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorjao <jao@gnu.org>2024-03-27 14:20:10 +0000
committerjao <jao@gnu.org>2024-03-27 14:20:10 +0000
commitbb477cae460bff43fbc5cd79357fc4d43cee1e50 (patch)
tree1bb41d1aa23b799504320e3a87726ad8715d8f7e
parent6aae32758647110a49d2414352d2cd13abc2c8c7 (diff)
downloadelibs-bb477cae460bff43fbc5cd79357fc4d43cee1e50.tar.gz
elibs-bb477cae460bff43fbc5cd79357fc4d43cee1e50.tar.bz2
jao-minibuffer-inhibit used during notmuch workspace redisplay
-rw-r--r--custom/jao-custom-notmuch.el7
1 files changed, 4 insertions, 3 deletions
diff --git a/custom/jao-custom-notmuch.el b/custom/jao-custom-notmuch.el
index b498f8b..0ad2abc 100644
--- a/custom/jao-custom-notmuch.el
+++ b/custom/jao-custom-notmuch.el
@@ -281,9 +281,10 @@
(derived-mode-p 'notmuch-hello-mode))
(when (not (string-blank-p jao-notmuch-minibuffer-string))
(let ((notmuch-hello-auto-refresh nil)) (notmuch-hello)))
- (save-window-excursion
- (calendar)
- (when agenda (org-agenda-list)))
+ (let ((jao-minibuffer-inhibit t))
+ (save-window-excursion
+ (calendar)
+ (when agenda (org-agenda-list))))
(unless (widget-at) (jao-notmuch-hello-first))
(jao-minibuffer-refresh))))