emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/notmuch-indicator 6f881fe3c2 32/36: Tweak THE most impo


From: ELPA Syncer
Subject: [elpa] externals/notmuch-indicator 6f881fe3c2 32/36: Tweak THE most important part of the package
Date: Wed, 21 Sep 2022 00:59:22 -0400 (EDT)

branch: externals/notmuch-indicator
commit 6f881fe3c2562bbb9fdca0cde7e9ae5269372b4a
Author: Protesilaos Stavrou <info@protesilaos.com>
Commit: Protesilaos Stavrou <info@protesilaos.com>

    Tweak THE most important part of the package
---
 README.md            | 4 ++--
 notmuch-indicator.el | 9 +++++----
 2 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/README.md b/README.md
index e12640f200..cbd1f08e02 100644
--- a/README.md
+++ b/README.md
@@ -38,11 +38,11 @@ For instance, a value like the following defines three 
searches:
 ```elisp
 (setq notmuch-indicator-args
       '((:terms "tag:unread and tag:inbox" :label "@")
-        (:terms "from:authorities and tag:unread" :label "👺")
+        (:terms "from:bank and tag:bills" :label "😱")
         (:terms "--output threads tag:loveletter" :label "💕")))
 ```
 
-These form a string like: `@50 👺1000 💕0`.
+These form a string which realistically is like: `@50 😱1000 💕0`.
 
 The user option `notmuch-indicator-refresh-count` determines how often
 the indicator will be refreshed.  It accepts a numeric argument which
diff --git a/notmuch-indicator.el b/notmuch-indicator.el
index 7c75b3d950..7f93601802 100644
--- a/notmuch-indicator.el
+++ b/notmuch-indicator.el
@@ -64,10 +64,10 @@
 ;;
 ;;     (setq notmuch-indicator-args
 ;;           '((:terms "tag:unread and tag:inbox" :label "@")
-;;             (:terms "from:authorities and tag:unread" :label "👺")
+;;             (:terms "from:bank and tag:bills" :label "😱")
 ;;             (:terms "--output threads tag:loveletter" :label "💕")))
 ;;
-;; These form a string like: `@50 👺1000 💕0'.
+;; These form a string which realistically is like: @50 😱1000 💕0.
 ;;
 ;; The user option `notmuch-indicator-refresh-count' determines how
 ;; often the indicator will be refreshed.  It accepts a numeric argument
@@ -118,9 +118,10 @@ buffer for the clean code (I dislike markup in doc 
strings)):
 
     (setq notmuch-indicator-args
           \='((:terms \"tag:unread and tag:inbox\" :label \"@\")
-            (:terms \"--output threads from:VIP\" :label \"🤡\")))
+            (:terms \"from:bank and tag:bills\" :label \"😱\")
+            (:terms \"--output threads tag:loveletter\" :label \"💕\")))
 
-These form a string like: @50 🤡10."
+These form a string which realistically is like: @50 😱1000 💕0."
   :type '(repeat
           (plist :options
                  (((const :tag "Search terms for `notmuch-count(1)'" :terms) 
string)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]