branch: master
commit 12e35d028501f5861261ef9b43eb5997c6d6a447
Author: Oleh Krehel <[email protected]>
Commit: Oleh Krehel <[email protected]>
counsel.el (counsel-bookmark): Add with-ivy-window
---
counsel.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/counsel.el b/counsel.el
index c54a433..3bc5db8 100644
--- a/counsel.el
+++ b/counsel.el
@@ -522,7 +522,8 @@ Update the minibuffer with the amount of lines collected
every
(ivy-read "Jump to bookmark: "
(bookmark-all-names)
:action (lambda (x)
- (bookmark-jump x))
+ (with-ivy-window
+ (bookmark-jump x)))
:require-match t
:caller 'counsel-bookmark))