From 79f70ef90b52765116ef125e812bf2dd14d56b6d Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Fri, 6 Mar 2020 11:56:54 +0000 Subject: [PATCH] chore(navigation): Make helm-man-woman available via C-c h M I mapped helm-make-projectile to "m" within the helm-command-map, which replaced helm-man-woman which, so let's make that available as "M" within the helm-command-map instead. --- modules/navigation/siren-helm.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/navigation/siren-helm.el b/modules/navigation/siren-helm.el index d25f22c..e6a7233 100644 --- a/modules/navigation/siren-helm.el +++ b/modules/navigation/siren-helm.el @@ -30,6 +30,8 @@ ("C-c f f" . helm-for-files) ("C-c f r" . helm-recentf) ("C-c C-m" . helm-M-x) + (:map helm-command-map + ("M" . helm-man-woman)) :custom (helm-M-x-always-save-history t)