From 8b4c21608f00c938bd19ff73f67c4b28dc420bbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Pankowski?= Date: Sat, 25 Nov 2017 22:23:47 +0100 Subject: [PATCH] make C-i () complete in helm-find-files-map and (i.e., shift ) present list of actions --- init.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/init.el b/init.el index c60babc..9dc73d1 100644 --- a/init.el +++ b/init.el @@ -79,6 +79,9 @@ :init (setq helm-split-window-default-side 'other) (helm-mode 1) + :config + (define-key helm-find-files-map (kbd "") #'helm-select-action) + (define-key helm-find-files-map (kbd "C-i") #'helm-execute-persistent-action) :bind (("M-x" . helm-M-x) ("M-y" . helm-show-kill-ring)