Questions tagged [elfeed]

Elfeed is an extensible web feed reader for Emacs, supporting both Atom and RSS.

Elfeed is an extensible web feed reader for Emacs, supporting both Atom and RSS.

It requires Emacs 24 and is available for download from MELPA or el-get. Elfeed was inspired by notmuch.

26 questions
8
votes
1 answer

Elfeed: mark all messages as read

Is it possible to mark all unread messages as read with a single key? r marks only the selected message as read.
Boccaperta-IT
  • 1,556
  • 11
  • 24
4
votes
1 answer

How do you pass a variable in to a lambda?

How can I pass a stringvariable in to this function, so that instead of printing "This is a test", it prints "This is a value-of-variable" (async-start ;; What to do in the child process (lambda () (message "This is a test") …
american-ninja-warrior
  • 3,773
  • 2
  • 21
  • 40
2
votes
1 answer

elfeed + olivetti modes

I want the elfeed-show-mode to be displayed with the olivetti minor mode olivetti-mode, so I do: (add-hook 'elfeed-show-mode-hook 'olivetti-mode) The problem is that the lines are not truncated correctly (see image). I have to invoke…
Luis Silva
  • 21
  • 2
2
votes
1 answer

Elfeed - Kill buffers on quit

I've been using Elfeed for some time, and I like it very much. However, there is one small thing I'd like to adjust. When leaving the search window (with elfeed-search-quit-window bound to q in the mode map), Elfeed leaves a trail of open buffers:…
gusbrs
  • 721
  • 4
  • 14
2
votes
0 answers

How to write a function to open real hyperlinks (Org Mode, Gnus Article, elfeed hyperlinks) in a specific browser?

First off, you can find my entire current config at https://gitlab.com/mordocai/emacs.d/tree/4cfdfd76368aa687a6277a22161b40624e32b8fe, just in case I miss including something. I currently have my emacs browser config setup like: (global-set-key (kbd…
mordocai
  • 51
  • 4
1
vote
1 answer

How to hide a face?

I am new to Emacs (28.2) and would like to customize certain packages by simply hiding some of their elements or faces. For example, I'm trying to remove elfeed-search-last-update-face from elfeed-summary. Alas, customize-face does not seem to offer…
Carapuce
  • 57
  • 4
1
vote
1 answer

Spacemacs: User code does not load in dotspacemacs/user-init and dotspacemacs/user-config -- elfeed

I want to modify elfeed using this article: https://cundy.me/post/elfeed/ I cannot load the following code: (defun concatenate-authors (authors-list) "Given AUTHORS-LIST, list of plists; return string of all authors concatenated." …
kai90
  • 13
  • 5
1
vote
1 answer

Find the IPv4 address of the host

I'm configuring simple-httpd so I can access my elfeed remotely and would like to automatically detect the IP address of the host (since I use the config across machines and want to set it dynamically). I found this old thread but C-h v network-…
slackline
  • 293
  • 3
  • 14
1
vote
1 answer

What are enclosures in elfeed?

The term is used many times here https://github.com/oystersauce8/elfeed/blob/master/elfeed-show.el Googled it: https://duckduckgo.com/?q=elisp%3A+what+are+enclosures+in+elisp&t=h_&ia=web not much info actually.
american-ninja-warrior
  • 3,773
  • 2
  • 21
  • 40
1
vote
1 answer

How to get word statistics of RSS feeds via Elfeed?

I'm using Elfeed as an RSS client. Given an *elfeed-search* buffer, I would like to know the word frequencies in the current search. I've looked at this answer, and while the proposed function works great for a normal buffer with text, it breaks in…
red
  • 53
  • 4
1
vote
2 answers

How do I set a custom name for a feed in elfeed?

I use elfeed to follow some blogs and news sites. One on them is Arne Metz's "Simplify C++". This feed does not set its name so in the elfeed-search buffer this field is left empty. This makes it difficult to quickly scan the list of feeds to…
Mikael Springer
  • 513
  • 3
  • 13
1
vote
1 answer

how to make non-bold text in Elfeed?

I want search-title-face to be non-bold. Tried to add to my .emacs file this chunk (due to http://nullprogram.com/blog/2013/11/26/): (custom-set-faces '(elfeed-search-title-face ((t :weight normal)))) But it doesn't work.
drobnbobn
  • 575
  • 4
  • 15
0
votes
0 answers

Highlighting entries with specific keywords in Elfeed

To avoid missing on important news, I am trying to highlight Elfeed entries containing specific words in their titles: (add-hook 'elfeed-new-entry-hook (elfeed-make-tagger :entry-title '("Blade Runner" "Daria" …
Carapuce
  • 57
  • 4
0
votes
0 answers

Profiling org-capture and improving its performance

My org-capture takes about 6 seconds to open up on a reasonably powerful machine, and it becomes over a minute on a cheap laptop. I decided to profile the function and here's what it gave: 2423 97% - command-execute 2375 95% -…
Namudon'tdie
  • 159
  • 6
0
votes
1 answer

Hook resulting in a Wrong type argument error?

I am trying to do two things for Elfeed Summary: Automatically update the feeds when starting Elfeed Summary. Automatically hide the feeds without unread articles when starting Elfeed Summary. Number one is already covered and works nicely…
Carapuce
  • 57
  • 4
1
2