make C-i (<tab>) complete in helm-find-files-map

and <backtab> (i.e., shift <tab>) present list of actions
This commit is contained in:
Łukasz Pankowski 2017-11-25 22:23:47 +01:00
parent aa267256bc
commit 8b4c21608f

View File

@ -79,6 +79,9 @@
:init :init
(setq helm-split-window-default-side 'other) (setq helm-split-window-default-side 'other)
(helm-mode 1) (helm-mode 1)
:config
(define-key helm-find-files-map (kbd "<backtab>") #'helm-select-action)
(define-key helm-find-files-map (kbd "C-i") #'helm-execute-persistent-action)
:bind :bind
(("M-x" . helm-M-x) (("M-x" . helm-M-x)
("M-y" . helm-show-kill-ring) ("M-y" . helm-show-kill-ring)