From 9b59393e270fd4bd0a81b62f77b9eb7fbdc2a800 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 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/counsel.el b/counsel.el index c176820f..2b33722a 100644 --- a/counsel.el +++ b/counsel.el @@ -2490,7 +2490,8 @@ 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") + ("d" bookmark-delete "delete") ("e" bookmark-rename "edit") ("s" bookmark-set "overwrite") ("x" ,(counsel--apply-bookmark-fn #'counsel-find-file-extern)