From 0f1d381f892311875886c0a4bfdc2832644e2360 Mon Sep 17 00:00:00 2001 From: Eric Danan Date: Sat, 7 May 2016 19:22:09 +0200 Subject: [PATCH] change "other window" keybinding Changed it to `M-o j` in `counsel-projectile-find-file`, `counsel-projectile-find-dir`, and `counsel-projectile-switch-to-buffer` This is consistent with the `counsel-find-file` and `ivy-switch-buffer` key (see https://github.com/abo-abo/swiper/issues/505) Closes #1 --- counsel-projectile.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/counsel-projectile.el b/counsel-projectile.el index bd5cc73..147a8f3 100644 --- a/counsel-projectile.el +++ b/counsel-projectile.el @@ -62,7 +62,7 @@ With a prefix ARG invalidates the cache first." (ivy-set-actions 'counsel-projectile-find-file - '(("w" (lambda (x) + '(("j" (lambda (x) (with-ivy-window (find-file-other-window (projectile-expand-root x)))) @@ -92,7 +92,7 @@ With a prefix ARG invalidates the cache first." (ivy-set-actions 'counsel-projectile-find-dir - '(("w" (lambda (x) + '(("j" (lambda (x) (with-ivy-window (dired-other-window (projectile-expand-root x)))) @@ -116,7 +116,7 @@ With a prefix ARG invalidates the cache first." (ivy-set-actions 'counsel-projectile-switch-to-buffer - '(("w" (lambda (x) + '(("j" (lambda (x) (with-ivy-window (switch-to-buffer-other-window x))) "other window")))