feat(editor): don't use helm for projectile-switch-project

With selectrum and marginalia, regular completing-read is actually more
than good enough for simple project selection.
This commit is contained in:
2021-10-06 01:37:28 +01:00
parent 6dc661f14e
commit b8fe28f07c
2 changed files with 3 additions and 3 deletions

View File

@@ -13,9 +13,7 @@
:after (helm-global-bindings)
:bind
("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))
("C-x C-;" . helm-projectile-find-file))
(provide 'siren-helm-projectile)
;;; siren-helm-projectile.el ends here

View File

@@ -9,6 +9,8 @@
(use-package projectile
:bind
("C-c p p" . projectile-switch-project)
("C-c ;" . projectile-switch-project)
("C-c C-;" . projectile-switch-project)
("C-c p k" . projectile-kill-buffers)
("C-c p r" . projectile-replace)
("C-c p S" . projectile-save-project-buffers)