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:
parent
a724fc0941
commit
0f1d381f89
1 changed files with 3 additions and 3 deletions
|
|
@ -62,7 +62,7 @@ With a prefix ARG invalidates the cache first."
|
||||||
|
|
||||||
(ivy-set-actions
|
(ivy-set-actions
|
||||||
'counsel-projectile-find-file
|
'counsel-projectile-find-file
|
||||||
'(("w" (lambda (x)
|
'(("j" (lambda (x)
|
||||||
(with-ivy-window
|
(with-ivy-window
|
||||||
(find-file-other-window
|
(find-file-other-window
|
||||||
(projectile-expand-root x))))
|
(projectile-expand-root x))))
|
||||||
|
|
@ -92,7 +92,7 @@ With a prefix ARG invalidates the cache first."
|
||||||
|
|
||||||
(ivy-set-actions
|
(ivy-set-actions
|
||||||
'counsel-projectile-find-dir
|
'counsel-projectile-find-dir
|
||||||
'(("w" (lambda (x)
|
'(("j" (lambda (x)
|
||||||
(with-ivy-window
|
(with-ivy-window
|
||||||
(dired-other-window
|
(dired-other-window
|
||||||
(projectile-expand-root x))))
|
(projectile-expand-root x))))
|
||||||
|
|
@ -116,7 +116,7 @@ With a prefix ARG invalidates the cache first."
|
||||||
|
|
||||||
(ivy-set-actions
|
(ivy-set-actions
|
||||||
'counsel-projectile-switch-to-buffer
|
'counsel-projectile-switch-to-buffer
|
||||||
'(("w" (lambda (x)
|
'(("j" (lambda (x)
|
||||||
(with-ivy-window
|
(with-ivy-window
|
||||||
(switch-to-buffer-other-window x)))
|
(switch-to-buffer-other-window x)))
|
||||||
"other window")))
|
"other window")))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue