branch: externals/counsel commit bde2176e89aa38344f700e9e7f9fc5c7b4fc471f Author: Hugo Heagren <h...@heagren.com> Commit: Basil L. Contovounesios <conto...@tcd.ie>
Add "other window" action for counsel-bookmark * counsel.el (counsel-bookmark): Add "other window" action bookmark-jump-other-window, in line with similar actions for counsel-find-file and ivy-switch-buffer (PR #2902). Copyright-paperwork-exempt: yes --- counsel.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/counsel.el b/counsel.el index c176820..2b33722 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)