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
This commit is contained in:
Eric Danan 2016-05-07 19:22:09 +02:00
parent a724fc0941
commit 0f1d381f89

View file

@ -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")))