diff options
author | jao <jao@gnu.org> | 2021-06-18 20:18:03 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2021-06-18 20:18:03 +0100 |
commit | e60ec9225970419d9de7cfee6e180f7e742b7e49 (patch) | |
tree | 8efb9aaf79662a45b4bfa09db762971b7776a04d | |
parent | 7a64e219709a9ae74855eeb37a0ccfccc3cc2060 (diff) | |
download | elibs-e60ec9225970419d9de7cfee6e180f7e742b7e49.tar.gz elibs-e60ec9225970419d9de7cfee6e180f7e742b7e49.tar.bz2 |
nits
-rw-r--r-- | email.org | 1 | ||||
-rw-r--r-- | init.org | 10 | ||||
-rw-r--r-- | lib/net/jao-notmuch.el | 5 |
3 files changed, 12 insertions, 4 deletions
@@ -538,6 +538,7 @@ ("M" . jao-notmuch-move-message) ("n" . jao-notmuch-tree-next) ("s" . jao-notmuch-tree-spam) + ("u" . jao-notmuch-tree-flag) ("RET" . jao-notmuch-tree-show-or-scroll) ("SPC" . jao-notmuch-tree-scroll-or-next)) :map notmuch-show-mode-map @@ -1484,18 +1484,20 @@ (insert "\nmaildir-mailbox = " mbox "\n\n") (save-buffer))) - (defun jao-rss-subscribe () + (defun jao-rss-subscribe (&optional url) + "Subscribe to a given RSS URL. If URL not given, look for it." (interactive) - (let* ((url (or (jao-url-around-point) + (let* ((url (or url + (jao-url-around-point) (jao-rss--find-url) (read-string "Feed URL: "))) - (url+title (if (consp url) url (cons url (read-string "Feed name: ")))) + (url+title (if (consp url) url (list url))) (url (car url+title)) (title (cdr url+title))) (if url (let ((url (if (string-match "^feed:" url) (substring url 5) url))) (when (y-or-n-p (format "Subscribe to <%s>? " url)) - (let* ((name (read-string "Name: " title)) + (let* ((name (read-string "Feed name: " title)) (cat (completing-read "Category: " (jao-list-mailboxes "feeds") nil t))) diff --git a/lib/net/jao-notmuch.el b/lib/net/jao-notmuch.el index 4ca8573..f0659f6 100644 --- a/lib/net/jao-notmuch.el +++ b/lib/net/jao-notmuch.el @@ -211,6 +211,11 @@ (interactive) (jao-notmuch-tree--tag-and-next '("-unread" "-new") nil t)) +(defun jao-notmuch-tree-flag (unmark) + (interactive "P") + (let ((tags (if unmark '("-flagged") '("-unread" "-new" "-deleted" "+flagged")))) + (jao-notmuch-tree--tag-and-next tags nil nil))) + (defun jao-notmuch-tree-spam (unmark) (interactive "P") (let ((tags (if unmark '("-spam") '("-unread" "-new" "+spam")))) |