From 670e23ac7010085a4a90fc94203b988b777d804b Mon Sep 17 00:00:00 2001 From: Marcel Kapfer Date: Thu, 6 Feb 2025 20:01:07 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20(elfeed)=20Add=20keybinding=20for?= =?UTF-8?q?=20staring=20a=20entry?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config.org | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/config.org b/config.org index 5a371af..b6fe81a 100644 --- a/config.org +++ b/config.org @@ -2255,8 +2255,14 @@ Source: [[https://github.com/skeeto/elfeed][GitHub: skeeto/elfeed]] #+begin_src emacs-lisp (use-package elfeed :demand t - :config (setq elfeed-sort-order 'ascending) - :bind (("C-c e" . elfeed))) + :config + (setq elfeed-sort-order 'ascending) + (defun my/elfeed-search-toggle-star () + (interactive) + (elfeed-search-toggle-all 'star)) + :bind (("C-c e" . elfeed) + :map elfeed-search-mode-map + ("f" . my/elfeed-search-toggle-star))) #+end_src ** Storing articles