completion/helm: redesign keybindings

A more vim-friendly (and spacemacs-friendly) keybinding scheme.

May address #829
This commit is contained in:
Henrik Lissner 2018-08-24 01:47:44 +02:00
parent 08c09c2898
commit 9eee22e3fc
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395
2 changed files with 38 additions and 53 deletions

View file

@ -83,6 +83,9 @@ be negative.")
;; disable special behavior for left/right, M-left/right keys.
helm-ff-lynx-style-map nil)
(when (featurep! :feature evil +everywhere)
(setq helm-default-prompt-display-function #'+helm--set-prompt-display))
:init
(when (and EMACS26+ (featurep! +childframe))
(setq helm-display-function #'+helm-posframe-display)
@ -205,37 +208,3 @@ be negative.")
(setq swiper-helm-display-function
(lambda (buf &optional _resume) (pop-to-buffer buf)))
;;
;; Evil integration
;;
(when (featurep! :feature evil +everywhere)
(setq helm-default-prompt-display-function #'+helm--set-prompt-display)
(map! (:after helm
:map helm-map
"C-S-p" #'helm-previous-source
"C-S-n" #'helm-next-source
"C-l" #'helm-execute-persistent-action
"C-j" #'helm-next-line
"C-k" #'helm-previous-line
"C-f" #'helm-next-page
"C-u" #'helm-previous-page
[tab] #'helm-select-action)
(:after helm-files
:map (helm-find-files-map helm-read-file-map)
[M-return] #'helm-ff-run-switch-other-window
"M-h" #'helm-find-files-up-one-level)
(:after helm-locate
:map helm-generic-files-map
"S-<return>" #'helm-ff-run-switch-other-window)
(:after helm-buffers
:map helm-buffer-map
[M-return] #'helm-buffer-switch-other-window)
(:after helm-regexp
:map helm-moccur-map
[M-return] #'helm-moccur-run-goto-line-ow)
(:after helm-grep
:map helm-grep-map
[M-return] #'helm-grep-run-other-window-action)))