diff options
author | jao <jao@gnu.org> | 2021-06-10 15:54:56 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2021-06-10 15:54:56 +0100 |
commit | 356826e820f5e270bc455177d5a2665beda02d05 (patch) | |
tree | 9fd9013a6e59d11708e2fbed547866900e43a468 | |
parent | d9d8a503b791befb15a43c1a6e72b4b8d76fe1af (diff) | |
download | elibs-356826e820f5e270bc455177d5a2665beda02d05.tar.gz elibs-356826e820f5e270bc455177d5a2665beda02d05.tar.bz2 |
notmuch queries and tagging
-rw-r--r-- | email.org | 19 |
1 files changed, 13 insertions, 6 deletions
@@ -321,9 +321,9 @@ (:name "W" :query "tag:new and tag:bigml" :face jao-themes-dimm) (:name "I" :query "tag:new and tag:jao and tag:inbox") (:name "J" :query "tag:new and tag:jao" :face jao-themes-dimm) - (:name "E" :query "tag:new and tag:feeds and tag:emacs" + (:name "E" :query "tag:new and tag:emacs" :face jao-themes-dimm) + (:name "N" :query "tag:new and tag:gmane and not tag:emacs" :face jao-themes-dimm) - (:name "N" :query "tag:new and tag:gmane" :face jao-themes-dimm) (:name "F" :query "tag:new and tag:feeds and not tag:emacs" :face jao-themes-dimm))) @@ -372,9 +372,11 @@ (shorten-strings (sort ms #'string<))))) (setq notmuch-saved-searches - `(,(jao-notmuch--q "bigml" "inbox" "bi") - ,@(jao-notmuch--mboxes-search "bigml" "inbox") - ,(jao-notmuch--q "bigml/support" nil "bs" '("tag:new" "tag:support")) + `(,(jao-notmuch--q "bigml/inbox" nil "bi" + '("tag:new" "tag:bigml" "tag:inbox")) + ,(jao-notmuch--q "bigml/support" nil "bs" + '("tag:new" "tag:support")) + ,@(jao-notmuch--mboxes-search "bigml" "inbox" "support") ,@(jao-notmuch--mboxes-search "jao") ,@(jao-notmuch--mboxes-search "feeds") ,(jao-notmuch--q "gmane/emacs" nil "e" @@ -765,9 +767,14 @@ notmuch tag +gmane -- tag:new AND folder:/gmane/ - for l in geiser notmuch haskell erlang emacs-devel emacs-diffs emacs; do + for l in clojure elixir geiser notmuch haskell erlang emacs-devel emacs-diffs emacs; do tag_list $l done + + for l in chicken guile gambit scheme chez; do + tag_list scheme $l + done + tag_list emacs-bugs bug-gnu-emacs tag_list mailutils bug-mailutils #+end_src |