fix(projects): Improve helm-projectile keybindings in terminal

As `C-;` cannot be used in terminals, make `C-x C-;` and `C-x ;` both
trigger the command I use the most, `help-projectile-find-file`. It's
still easy to trigger `helm-projectile` via `C-c p h`, wherein `C-c p`
is the projectile prefix.
This commit is contained in:
2020-05-10 20:36:16 +01:00
parent cdacf31ca0
commit cc8a76c617

View File

@@ -10,7 +10,7 @@
(use-package helm-projectile
:bind
("C-x ;" . helm-projectile)
("C-x ;" . helm-projectile-find-file)
("C-x C-;" . helm-projectile-find-file)
("C-c ;" . helm-projectile-switch-project)
("C-c C-;" . helm-projectile-switch-project))