Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't skip link: in elfeed-show-next-link #482

Open
ParetoOptimalDev opened this issue Mar 7, 2023 · 1 comment
Open

Don't skip link: in elfeed-show-next-link #482

ParetoOptimalDev opened this issue Mar 7, 2023 · 1 comment

Comments

@ParetoOptimalDev
Copy link

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)))
@plantarum
Copy link

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants