From 9e47cf1f9736487094da62f0d10f04e8808c6c37 Mon Sep 17 00:00:00 2001 From: syl20bnr Date: Thu, 10 Mar 2016 20:31:11 -0500 Subject: [PATCH] Fix C-c C-e key binding in helm-find-files --- layers/+completion/spacemacs-helm/keybindings.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layers/+completion/spacemacs-helm/keybindings.el b/layers/+completion/spacemacs-helm/keybindings.el index 5f48d2e52..41cdd1142 100644 --- a/layers/+completion/spacemacs-helm/keybindings.el +++ b/layers/+completion/spacemacs-helm/keybindings.el @@ -36,5 +36,5 @@ Ensure that helm is required before calling FUNC." "Exits helm, opens a dired buffer and immediately switches to editable mode." (interactive) (helm-exit-and-execute-action 'spacemacs-helm//find-files-edit)) -(with-eval-after-load 'helm +(with-eval-after-load 'helm-files (define-key helm-find-files-map (kbd "C-c C-e") 'spacemacs-helm/find-files-edit))