short: after a counsel-yank-pop
, yank
does not yank the same entry. How can I achieve that behavior?
long: Having a kill-ring like:
foo
bar
baz
When doing a C-y
(yank
) and M-y
(yank-pop
) 'bar' will be inserted. And for every repeated C-y
, 'bar' will be inserted again.
This is the behavior (repeated insertion of 'bar') I'd like to have with counsel-yank-pop
instead of yank-pop
.
But counsel-yank-pop
does not seem to modify the kill-ring pointer for yank
.
How can I achieve the wanted behavior?
Note: I'd like to keep using ivy
and counsel
, instead of switching to helm
or something else.