Adam Porter
Adam Porter
@malcook You could customize this function, which inserts separators where the date changes: ```el (cl-defun ap/elfeed-search-add-separators (&key (min-group-size 2)) "Insert overlay spacers where the current date changes. If no group...
@timmli I use `elfeed-goodies`, so I replace the drawing function like this: ```el (advice-add #'elfeed-goodies/entry-line-draw :override #'ap/elfeed-goodies/entry-line-draw) ```
Oh, that's in my config: ```el (defun ap/elfeed-goodies/entry-line-draw (entry) "My version of this function. Prints ENTRY to the buffer." (cl-flet ((add-faces (str &rest faces) (dolist (face faces str) (add-face-text-property 0...
Just add it to `elfeed-search-update-hook`, like: ```el (add-hook 'elfeed-search-update-hook #'ap/elfeed-search-add-separators) ```
AFAIK, skeeto doesn't use Emacs much anymore--at least, not as his editor. I don't know if he still uses it for Elfeed. Anyway, Someone(TM) "just" needs to start working on...
As with most Emacs problems, the first step is to try to reproduce the problem in a clean configuration. You could use https://github.com/alphapapa/with-emacs.sh to help.
Yes: ```el (completing-read "Tag: " (elfeed-db-get-all-tags)) ```
This is an interesting idea. I implemented a similar feature in `pocket-reader`'s excerpt feature. I think it could work here too.
I've implemented this in my config as "excerpts". Here's a screenshot and the code I use:  ```el (defmacro ap/elfeed-search-at-entry (entry &rest body) "Eval BODY with point at ENTRY." (declare...
I'm still using this feature and enjoying it.  @skeeto Would you be interested in a PR for this feature? (It isn't, or needn't be, specific to my customized display...