elfeed icon indicating copy to clipboard operation
elfeed copied to clipboard

Don't skip `link:` in `elfeed-show-next-link`

Open ParetoOptimalDev opened this issue 2 years ago • 1 comments

For instance in:

image

I'd like hitting TAB to go to Link: https://news.ycombinator.com/item?id=35062370.

It looks like a simple change if it's universally agreeable, or even agreeable behind a config flag with:

(defun elfeed-show-next-link ()
  "Skip to the next link, exclusive of the Link header."
  (interactive)
  (let ((properties (text-properties-at (line-beginning-position))))
    (when (memq 'message-header-name properties)
+    (previous-line)
      (forward-paragraph))
    (shr-next-link)))

ParetoOptimalDev avatar Mar 07 '23 22:03 ParetoOptimalDev

I had the same idea. After some investigating, I assume the reason this isn't the default behaviour is that you can already open the link for an entry with b, bound to elfeed-show-visit.

plantarum avatar Nov 01 '23 18:11 plantarum