elfeed-custom-feeds.el

Custom feed generators (GitHub PR/issues and HuggingFace model releases) for elfeed.
Log | Files | Refs | LICENSE

commit e4a099648da1b60c04294c30c466dd1a99b6457c
parent 6c76f25427d88faa5176efa1458cceca83afe533
Author: vin <git@vineetk.net>
Date:   Fri, 24 Oct 2025 15:45:47 -0400

fix typo

Diffstat:
MREADME.org | 22+++++++++++-----------
Melfeed-custom-feeds.el | 4++--
2 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/README.org b/README.org @@ -10,17 +10,17 @@ track content from platforms that don't provide native feeds. * Installation ** Using elpaca (local development) #+begin_src emacs-lisp - (use-package elfeed-custom-feeds - :ensure (:host "git.vineetk.net" :repo "vin/elfeed-custom-feeds") - :after elfeed - :custom - (elfeed-custom-huggingface-orgs '("sentence-transformers" "google-bert")) - (elfeed-custom-github-pr-queries - '(("emacs-mirror/emacs" "" "Emacs") - ("atlas-engineer/nyxt" "is:open" "Nyxt") - ("qutebrowser/qutebrowser" "label:\"bug: behavior\"" "qutebrowser behavior bug"))) - :hook - (elfeed-update . elfeed-custom-feeds-update-all)) +(use-package elfeed-custom-feeds + :ensure (:host "git.vineetk.net" :repo "vin/elfeed-custom-feeds") + :after elfeed + :custom + (elfeed-custom-huggingface-orgs '("sentence-transformers" "google-bert")) + (elfeed-custom-github-pr-queries + '(("emacs-mirror/emacs" "" "Emacs") + ("atlas-engineer/nyxt" "is:open" "Nyxt") + ("qutebrowser/qutebrowser" "label:\"bug: behavior\"" "qutebrowser behavior bug"))) + :hook + (elfeed-update . elfeed-custom-feeds-update-all)) #+end_src ** Manual installation diff --git a/elfeed-custom-feeds.el b/elfeed-custom-feeds.el @@ -22,14 +22,14 @@ ;;; Code: -(require 'elfeed-custom-feeds-hf) +(require 'elfeed-custom-feeds-huggingface) (require 'elfeed-custom-feeds-github) ;;;###autoload (defun elfeed-custom-feeds-update-all () "Update all custom feeds (HuggingFace + GitHub)." (interactive) - (elfeed-custom-feeds-hf-update) + (elfeed-custom-feeds-huggingface-update) (elfeed-custom-feeds-github-update) (message "Updating custom feeds..."))