Add C-S-(J|K) to helm-follow-action
I noticed that one can go down and up with `C-j` and `C-k` but helm-follow-action bindings are M-down or M-up, which is not EVIL at all
This commit is contained in:
parent
8d88a2ba1f
commit
37eed0af8f
1 changed files with 2 additions and 0 deletions
|
@ -84,6 +84,8 @@
|
|||
hybrid-mode-enable-hjkl-bindings))
|
||||
(define-key helm-map (kbd "C-j") 'helm-next-line)
|
||||
(define-key helm-map (kbd "C-k") 'helm-previous-line)
|
||||
(define-key helm-map (kbd "C-S-j") 'helm-follow-action-forward)
|
||||
(define-key helm-map (kbd "C-S-k") 'helm-follow-action-backward)
|
||||
(define-key helm-map (kbd "C-h") 'helm-next-source)
|
||||
(define-key helm-map (kbd "C-S-h") 'describe-key)
|
||||
(define-key helm-map (kbd "C-l") (kbd "RET"))
|
||||
|
|
Reference in a new issue