remyhonig / elfeed-org

Configure the Elfeed RSS reader with an Orgmode file
337 stars 35 forks source link

Cannot pull feeds #94

Open jarss opened 2 months ago

jarss commented 2 months ago

Used to work, now it doesn't. Scratching my head at what I changed in my config:

Copy-pasted the code here, modified the path:

;; Load elfeed-org
(require 'elfeed-org)

;; Initialize elfeed-org
;; This hooks up elfeed-org to read the configuration when elfeed
;; is started with =M-x elfeed=
(elfeed-org)

;; Optionally specify a number of files containing elfeed
;; configuration. If not set then the location below is used.
;; Note: The customize interface is also supported.
(setq rmh-elfeed-org-files (list "~/Sync/Personal/feeds.org"))

rmh-elfeed.org-files checks out OK:

rmh-elfeed-org-files is a variable defined in ‘elfeed-org.el’.

Its value is ("~/Sync/Personal/feeds.org")
Original value was 
("~/.emacs.d/elfeed.org")

The files where we look to find trees with the ‘rmh-elfeed-org-tree-id’.
In this file paths can be given relative to ‘org-directory’.

  You can customize this variable.

[back]

However, Elfeed feeds is nil:

elfeed-feeds is a variable defined in ‘elfeed.el’.

Its value is nil

List of all feeds that Elfeed should follow.
You must add your feeds to this list.

In its simplest form this will be a list of strings of feed URLs.
Items in this list can also be list whose car is the feed URL
and cdr is a list of symbols to be applied to all discovered
entries as tags ("autotags"). For example,

  (setq elfeed-feeds '("http://foo/"
                       "http://bar/"
                       ("http://baz/" comic)))

All entries from the "baz" feed will be tagged as "comic"
when they are first discovered.

  You can customize this variable.

[back]

Is there a requirement I'm skipping? It was pretty straight forward before, the above just worked.

jarss commented 2 months ago

The issue was that I did not tag my parent header with "elfeed". Someone mentioned it and it now does not work. I didn't know that's a requirement.