Remap C-{j,k} to {next,previous}-line-or-history-element

This commit is contained in:
Henrik Lissner 2019-06-22 01:44:48 +02:00
parent 1e357310c4
commit affa7314f7
No known key found for this signature in database
GPG key ID: 5F6C0EA160557395

View file

@ -905,7 +905,7 @@ To change these keys see `+default-repeat-keys'."
"C-b" #'backward-word
"C-r" #'evil-paste-from-register
;; Scrolling lines
"C-j" #'next-line
"C-k" #'previous-line
"C-j" #'next-line-or-history-element
"C-k" #'previous-line-or-history-element
"C-S-j" #'scroll-up-command
"C-S-k" #'scroll-down-command))