From 3a809153f9e52765420d7ac8e3047c37866e7003 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 1 Jun 2018 13:56:29 +0200 Subject: [PATCH] Fix scroll-*-command & C-r in minibuffer+ivy C-u was overwriting backward-kill-sentence & C-r was bound to the incorrect command for evil users. --- modules/config/default/+bindings.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/config/default/+bindings.el b/modules/config/default/+bindings.el index fce2662ee..fd30d8744 100644 --- a/modules/config/default/+bindings.el +++ b/modules/config/default/+bindings.el @@ -768,11 +768,11 @@ "\C-z" (λ! (ignore-errors (call-interactively #'undo)))) (when (featurep! :feature evil +everywhere) (evil-define-key* nil map - "\C-r" #'abort-recursive-edit + "\C-r" #'evil-paste-from-register "\C-j" #'next-line "\C-k" #'previous-line - "\C-d" #'scroll-down-command - "\C-u" #'scroll-up-command))) + "\C-J" #'scroll-up-command + "\C-K" #'scroll-down-command))) (mapc #'+default|fix-minibuffer-in-map (list minibuffer-local-map