From 2ebc8ee986205302c47dd570b507851f33387e4b Mon Sep 17 00:00:00 2001 From: Hugo Heagren Date: Sun, 1 Aug 2021 20:17:16 +0100 Subject: [PATCH] counsel.el: Add `other window' and `other frame' for Bookmarks Add actions `other window' and `other frame' to counsel-bookmark, in line with similar actions for counsel-find-file and ivy-switch-buffer. --- counsel.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/counsel.el b/counsel.el index c176820f..132d6dfe 100644 --- a/counsel.el +++ b/counsel.el @@ -2490,7 +2490,9 @@ By default `counsel-bookmark' opens a dired buffer for directories." (ivy-set-actions 'counsel-bookmark - `(("d" bookmark-delete "delete") + `(("j" bookmark-jump-other-window "other window") + ("f" bookmark-jump-other-frame "other frame") + ("d" bookmark-delete "delete") ("e" bookmark-rename "edit") ("s" bookmark-set "overwrite") ("x" ,(counsel--apply-bookmark-fn #'counsel-find-file-extern)