summary refs log tree commit diff stats
path: root/lisp/+elfeed.el
diff options
context:
space:
mode:
authorCase Duckworth2022-03-30 18:14:56 -0500
committerCase Duckworth2022-03-30 18:14:56 -0500
commit29c287a8c31bebe9dd40b499415511c96a1ef6fa (patch)
tree8c12bc6172b651839060da33ac4d6d2af3141534 /lisp/+elfeed.el
parentUh (diff)
downloademacs-29c287a8c31bebe9dd40b499415511c96a1ef6fa.tar.gz
emacs-29c287a8c31bebe9dd40b499415511c96a1ef6fa.zip
I waited way too long to make this commit
Diffstat (limited to 'lisp/+elfeed.el')
-rw-r--r--lisp/+elfeed.el8
1 files changed, 8 insertions, 0 deletions
diff --git a/lisp/+elfeed.el b/lisp/+elfeed.el index 8f7f17a..7f9e193 100644 --- a/lisp/+elfeed.el +++ b/lisp/+elfeed.el
@@ -31,6 +31,14 @@
31 (interactive) 31 (interactive)
32 (elfeed-show-visit t)) 32 (elfeed-show-visit t))
33 33
34(defun +elfeed-show-mark-read-and-advance ()
35 "Mark an item as read and advance to the next item.
36If multiple items are selected, don't advance."
37 (interactive)
38 (call-interactively #'elfeed-search-untag-all-unread)
39 (unless (region-active-p)
40 (call-interactively #'next-line)))
41
34;;; Fetch feeds async 42;;; Fetch feeds async
35;; https://github.com/skeeto/elfeed/issues/367 43;; https://github.com/skeeto/elfeed/issues/367
36 44