From e4a099648da1b60c04294c30c466dd1a99b6457c Mon Sep 17 00:00:00 2001 From: vin Date: Fri, 24 Oct 2025 15:45:47 -0400 Subject: fix typo --- README.org | 22 +++++++++++----------- elfeed-custom-feeds.el | 4 ++-- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/README.org b/README.org index 9441840..5857cec 100644 --- 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 index 163a69b..a64cc69 100644 --- 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...")) -- cgit v1.2.3