From 926f0fb77d31c4125f01111b655b130ae9fca577 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Mon, 7 Mar 2016 01:14:31 -0500 Subject: [PATCH] Fix helm keybinds --- core/core-helm.el | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/core/core-helm.el b/core/core-helm.el index 5af7ba078..7b6eff491 100644 --- a/core/core-helm.el +++ b/core/core-helm.el @@ -32,18 +32,19 @@ (mapc (lambda (r) (add-to-list 'helm-boring-file-regexp-list r)) (list "\\.projects$" "\\.DS_Store$" "\\.cask")) - (map! (:map (helm-generic-files-map helm-projectile-find-file-map) - "ESC" 'helm-keyboard-quit) - (:map (helm-map helm-generic-files-map helm-find-files-map helm-swoop-map helm-projectile-find-file-map) - "C-w" 'backward-kill-word - "C-r" 'evil-paste-from-register ; Evil registers in helm! Glorious! + (map! (:map (helm-map helm-generic-files-map helm-find-files-map helm-swoop-map helm-projectile-find-file-map) + "ESC" nil "/" nil "M-v" 'clipboard-yank + "C-w" 'backward-kill-word + "C-r" 'evil-paste-from-register ; Evil registers in helm! Glorious! "" 'backward-char "" 'forward-char "" 'helm-keyboard-quit [escape] 'helm-keyboard-quit "" 'helm-execute-persistent-action) + (:map (helm-generic-files-map helm-projectile-find-file-map) + "ESC" 'helm-keyboard-quit) (:map helm-find-files-map "C-w" 'helm-find-files-up-one-level "TAB" 'helm-execute-persistent-action)