adding a way to view elfeed articles in eww
This commit is contained in:
parent
d39b284d7a
commit
5341508fd4
2 changed files with 22 additions and 2 deletions
12
init.el
12
init.el
|
@ -2029,6 +2029,13 @@ interfere with the default `bongo-playlist-buffer'."
|
|||
|
||||
(setq shr-use-colors nil)
|
||||
|
||||
(defun chris/elfeed-eww-browse ()
|
||||
(interactive)
|
||||
(let* ((entry (elfeed-search-selected :ignore-region))
|
||||
(link (elfeed-entry-link entry)))
|
||||
(message link)
|
||||
(eww link)))
|
||||
|
||||
:general
|
||||
(chris/leader-keys
|
||||
:states 'normal
|
||||
|
@ -2037,7 +2044,10 @@ interfere with the default `bongo-playlist-buffer'."
|
|||
|
||||
(general-def 'normal elfeed-search-mode-map
|
||||
"v" 'chris/elfeed-bongo-insert-item
|
||||
"h" 'chris/elfeed-bongo-switch-to-playlist))
|
||||
"h" 'chris/elfeed-bongo-switch-to-playlist
|
||||
"b" 'chris/elfeed-eww-browse)
|
||||
(general-def 'normal elfeed-show-mode-map
|
||||
"b" 'eww))
|
||||
|
||||
(use-package elfeed-org
|
||||
:after elfeed
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue