From cc8a76c617eab90f584b60319750a774ce2b8ab9 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Sun, 10 May 2020 20:36:16 +0100 Subject: [PATCH] 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. --- modules/projects/siren-helm-projectile.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/projects/siren-helm-projectile.el b/modules/projects/siren-helm-projectile.el index ea5c69d..7c650d5 100644 --- a/modules/projects/siren-helm-projectile.el +++ b/modules/projects/siren-helm-projectile.el @@ -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))