From 5cc2befc7208b3a6ebde46cd2ace58b9d30cd4e2 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sat, 29 Feb 2020 00:03:40 -0500 Subject: [PATCH] Fix #2609: switch-project no-ops for helm users --- modules/ui/workspaces/config.el | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/ui/workspaces/config.el b/modules/ui/workspaces/config.el index f7c620cd5..f0fdad205 100644 --- a/modules/ui/workspaces/config.el +++ b/modules/ui/workspaces/config.el @@ -179,6 +179,11 @@ stored in `persp-save-dir'.") ("xt" counsel-projectile-switch-project-action-run-term "invoke term from project root") ("X" counsel-projectile-switch-project-action-org-capture "org-capture into project"))) + (when (featurep! :completion helm) + (after! helm-projectile + (setcar helm-source-projectile-projects-actions + '("Switch to Project" . +workspaces-switch-to-project-h)))) + ;; Fix #1973: visual selection surviving workspace changes (add-hook 'persp-before-deactivate-functions #'deactivate-mark)