Open alienbogart opened 4 years ago
I have the following configuration gems:
(dolist (variable '(grep-regexp-history counsel-grep-history counsel-git-grep-history evil-ex-search-history swiper-history))
(defvaralias variable 'regexp-search-ring))
See #1914 for a related discussion.
Another duplicate was #1939.
My Environment
Issue
When I run
swiper
to searchexample_string
, afterivy-done
example_string
becomes available toevil-search-next
andevil-search-previous
, as if I had made the search usingevil-search-forward
(normal state keybinding:/
) orevil-search-backward
(normal state keybinding:?
): they'll search for other instances ofexample_string
When I do the same with
counsel-grep
evil-search-next
andevil-search-previous
are not informed, and will search for whatever string was last stored byswiper
or Evil commands.So that's my question: is it possible to make
counsel-grep
behave likeswiper
in that regard?Thanks!