Skip to content

Commit

Permalink
Add C-S-(J|K) to helm-follow-action
Browse files Browse the repository at this point in the history
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
:P just putting it out there @syl20bnr this should not break anything
  • Loading branch information
CestDiego committed Mar 17, 2016
1 parent 50ff429 commit 1d551a6
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions layers/+completion/spacemacs-helm/packages.el
Original file line number Diff line number Diff line change
Expand Up @@ -397,6 +397,8 @@ Removes the automatic guessing of the initial value based on thing at point. "
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"))
Expand Down

0 comments on commit 1d551a6

Please sign in to comment.