diff options
author | jao <jao@gnu.org> | 2021-07-29 21:05:28 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2021-07-29 21:36:29 +0100 |
commit | 1678be4f58d23b5c7129c15558782c92dd0fdff0 (patch) | |
tree | 54648b51779bc95bcb78a54996747d406f652eec | |
parent | 16ec62e787f7992d2a331576d867a57498cba5a3 (diff) | |
download | elibs-1678be4f58d23b5c7129c15558782c92dd0fdff0.tar.gz elibs-1678be4f58d23b5c7129c15558782c92dd0fdff0.tar.bz2 |
nits
-rw-r--r-- | lib/eos/jao-minibuffer.el | 7 | ||||
-rw-r--r-- | lib/net/jao-notmuch.el | 2 | ||||
-rw-r--r-- | notmuch.org | 1 |
3 files changed, 5 insertions, 5 deletions
diff --git a/lib/eos/jao-minibuffer.el b/lib/eos/jao-minibuffer.el index 1d60ed2..3614455 100644 --- a/lib/eos/jao-minibuffer.el +++ b/lib/eos/jao-minibuffer.el @@ -95,9 +95,10 @@ " " msg)))) (defun jao-minibuffer--set-message (msg) - (if (and msg - (not (string-blank-p msg)) - (bound-and-true-p current-minibuffer-command)) + (if (or (not jao-minibuffer-enabled-p) + (and msg + (not (string-blank-p msg)) + (bound-and-true-p current-minibuffer-command))) msg (jao-minibuffer--format-msg msg))) diff --git a/lib/net/jao-notmuch.el b/lib/net/jao-notmuch.el index 905dcd9..2a785b1 100644 --- a/lib/net/jao-notmuch.el +++ b/lib/net/jao-notmuch.el @@ -213,7 +213,7 @@ (defun jao-notmuch--tree-update-buffer-name (&optional n) (when-let ((n (or n (jao-notmuch--unread-count)))) - (rename-buffer (format "{%s - %s}" (jao-notmuch--query-name) n)) + (rename-buffer (format "%s - %s" (jao-notmuch--query-name) n)) (jao-minibuffer-refresh))) (defun jao-notmuch--tree-sentinel (proc &rest _) diff --git a/notmuch.org b/notmuch.org index 1f92de7..e42016d 100644 --- a/notmuch.org +++ b/notmuch.org @@ -80,7 +80,6 @@ ,(jao-notmuch--q "bigml" "bug" "bb") ,@(jao-notmuch--mboxes-search "bigml" "inbox" "support") ,@(jao-notmuch--mboxes-search "jao") - ,(jao-notmuch--qn "feeds" "papers" "fp" '("tag:papers")) ,(jao-notmuch--qn "local" nil "l" '("tag:local")) ,(jao-notmuch--qn "emacs" "feeds" "ee" '("tag:emacs" "not tag:\"/^emacs-/\"")) |