summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.org22
-rw-r--r--elfeed-custom-feeds.el4
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.
10* Installation 10* Installation
11** Using elpaca (local development) 11** Using elpaca (local development)
12#+begin_src emacs-lisp 12#+begin_src emacs-lisp
13 (use-package elfeed-custom-feeds 13(use-package elfeed-custom-feeds
14 :ensure (:host "git.vineetk.net" :repo "vin/elfeed-custom-feeds") 14 :ensure (:host "git.vineetk.net" :repo "vin/elfeed-custom-feeds")
15 :after elfeed 15 :after elfeed
16 :custom 16 :custom
17 (elfeed-custom-huggingface-orgs '("sentence-transformers" "google-bert")) 17 (elfeed-custom-huggingface-orgs '("sentence-transformers" "google-bert"))
18 (elfeed-custom-github-pr-queries 18 (elfeed-custom-github-pr-queries
19 '(("emacs-mirror/emacs" "" "Emacs") 19 '(("emacs-mirror/emacs" "" "Emacs")
20 ("atlas-engineer/nyxt" "is:open" "Nyxt") 20 ("atlas-engineer/nyxt" "is:open" "Nyxt")
21 ("qutebrowser/qutebrowser" "label:\"bug: behavior\"" "qutebrowser behavior bug"))) 21 ("qutebrowser/qutebrowser" "label:\"bug: behavior\"" "qutebrowser behavior bug")))
22 :hook 22 :hook
23 (elfeed-update . elfeed-custom-feeds-update-all)) 23 (elfeed-update . elfeed-custom-feeds-update-all))
24#+end_src 24#+end_src
25 25
26** Manual installation 26** 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 @@
22 22
23;;; Code: 23;;; Code:
24 24
25(require 'elfeed-custom-feeds-hf) 25(require 'elfeed-custom-feeds-huggingface)
26(require 'elfeed-custom-feeds-github) 26(require 'elfeed-custom-feeds-github)
27 27
28;;;###autoload 28;;;###autoload
29(defun elfeed-custom-feeds-update-all () 29(defun elfeed-custom-feeds-update-all ()
30 "Update all custom feeds (HuggingFace + GitHub)." 30 "Update all custom feeds (HuggingFace + GitHub)."
31 (interactive) 31 (interactive)
32 (elfeed-custom-feeds-hf-update) 32 (elfeed-custom-feeds-huggingface-update)
33 (elfeed-custom-feeds-github-update) 33 (elfeed-custom-feeds-github-update)
34 (message "Updating custom feeds...")) 34 (message "Updating custom feeds..."))
35 35