Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make elfeed-search-live-filter also use elfeed-search-filter-history #436

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion elfeed-search.el
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,9 @@ Possible alignments are :left and :right."
"When non-nil, Elfeed is currently reading a filter from the minibuffer.
When live editing the filter, it is bound to :live.")

(defvar elfeed-search-filter-history nil
"History list for `elfeed-search-set-filter' and `elfeed-search-live-filter'.")

(defvar elfeed-search-filter-overflowing nil
"When non-nil, the current live filter overflows the window.")

Expand Down Expand Up @@ -916,7 +919,8 @@ Sets the :title key of the feed's metadata. See `elfeed-meta'."
(unwind-protect
(let ((elfeed-search-filter-active :live))
(setq elfeed-search-filter
(read-from-minibuffer "Filter: " elfeed-search-filter)))
(read-from-minibuffer "Filter: " elfeed-search-filter
nil nil 'elfeed-search-filter-history)))
(elfeed-search-update :force)))

;; Bookmarks
Expand Down