diff options
author | jao <jao@gnu.org> | 2024-03-27 14:20:10 +0000 |
---|---|---|
committer | jao <jao@gnu.org> | 2024-03-27 14:20:10 +0000 |
commit | bb477cae460bff43fbc5cd79357fc4d43cee1e50 (patch) | |
tree | 1bb41d1aa23b799504320e3a87726ad8715d8f7e /custom/jao-custom-notmuch.el | |
parent | 6aae32758647110a49d2414352d2cd13abc2c8c7 (diff) | |
download | elibs-bb477cae460bff43fbc5cd79357fc4d43cee1e50.tar.gz elibs-bb477cae460bff43fbc5cd79357fc4d43cee1e50.tar.bz2 |
jao-minibuffer-inhibit used during notmuch workspace redisplay
Diffstat (limited to 'custom/jao-custom-notmuch.el')
-rw-r--r-- | custom/jao-custom-notmuch.el | 7 |
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)))) |