mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
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:
@@ -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
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user