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.
This commit is contained in:
parent
bb71e06977
commit
3a809153f9
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue