Skip to content

Latest commit

 

History

History
132 lines (112 loc) · 4.33 KB

README.org

File metadata and controls

132 lines (112 loc) · 4.33 KB

:app rss

Description

Read RSS feeds in the comfort of Emacs.

Maintainers

This module has no dedicated maintainers. Become a maintainer?

Module flags

+org
Enable doom-package:elfeed-org, so you can configure your feeds with an org file ({org-directory}/elfeed.org) rather than Elisp.

Packages

  • doom-package:elfeed
  • doom-package:elfeed-goodies
  • doom-package:elfeed-org if doom-module:+org

Hacks

  • By default elfeed-search-filter is set to @2-weeks-ago and makes the last 2 weeks of entries visible. This needs to be set after elfeed has loaded like so in your $DOOMDIR/config.el:
    (after! elfeed
      (setq elfeed-search-filter "@1-month-ago +unread"))
        

Changelog

This module does not have a changelog yet.

Installation

Enable this module in your doom! block.

This module has no external requirements.

Usage

🔨 This module’s usage documentation is incomplete. Complete it?

  • As there isn’t currently binding for elfeed-update you can run it with M-x elfeed-update

Configuration

🔨 This module’s configuration documentation is incomplete. Complete it?

Without +org

When you don’t want to use org mode to manage your elfeed feeds you can put your subscriptions in $DOOMDIR/config.el:

(setq elfeed-feeds
      '("https://this-week-in-rust.org/rss.xml"
        "http://feeds.bbci.co.uk/news/rss.xml"))

With +org

When using +org flag then configuration is easier. You can use org-mode to configure feeds to follow:

* root :elfeed:
** Programming :programming:
*** [[https://this-week-in-rust.org/rss.xml][This Week in Rust]] :rust:
** News :news:
*** Top news :tops:
**** http://feeds.bbci.co.uk/news/rss.xml
  • Root of elfeed-org needs to have :elfeed: tag. This is where elfeed-org starts to read.
  • You can have subheaders as in example :programming:, and elfeed-org applies that tag to all subheader feeds, in example it adds it to This Week in Rust.
  • You can “name” feeds as you please with org-mode org-insert-link (C-c C-l) and put name as you want into description.
  • If you don’t want to use org-directory/elfeed.org file you can specify it with (setq rmh-elfeed-org-files '("path/to/your/elfeed/file.org))

Keybindings

  • General
    KeyModeDescription
    S-RETelfeed-search-modeOpen link into browser
    RETelfeed-search-modeOpen item
    selfeed-search-modeFilter
    C-jelfeed-show-modeMove to next item
    C-kelfeed-show-modeMove to previous item
  • If :editor evil +everywhere
    KeyDescription
    qelfeed-kill-buffer
    relfeed-search-update–force
    g cCopy link of current entry

News filtering

  • Time filtering
    • @2-days-ago Past two days
    • @2-weeks-ago Past two weeks
    • @2-years-ago Past two years
    • @2020-06-19 To show specific day
    • @2020-06-19--2020-03-10 Span of time
  • Tag filtering
    • Include +news
    • Exclude -rust
    • Both +news -rust
  • String filtering, this is case insensitive
    • Include
      • DOOM
      • Linu[sx] Search for both Linus and Linux
    • Exclude !something

Automatically updating feed when opening elfeed

Hook elfeed-update to elfeed-search-mode-hook:

(add-hook 'elfeed-search-mode-hook #'elfeed-update)

Troubleshooting

There are no known problems with this module. Report one?

Frequently asked questions

This module has no FAQs yet. Ask one?

Appendix

🔨 This module has no appendix yet. Write one?