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:
Diego Berrocal 2016-02-18 10:19:55 -05:00 committed by Eivind Fonn
parent 8d88a2ba1f
commit 37eed0af8f

View file

@ -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"))