From affa7314f76d564260ff6a19f0d41a18b4cf7cc3 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sat, 22 Jun 2019 01:44:48 +0200 Subject: [PATCH] Remap C-{j,k} to {next,previous}-line-or-history-element --- modules/config/default/+evil-bindings.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/config/default/+evil-bindings.el b/modules/config/default/+evil-bindings.el index fe89e4db3..18e72bc87 100644 --- a/modules/config/default/+evil-bindings.el +++ b/modules/config/default/+evil-bindings.el @@ -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))