mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
Remove redundant condition
This commit is contained in:
@ -20,19 +20,18 @@
|
|||||||
"C-w" #'doom/delete-backward-word
|
"C-w" #'doom/delete-backward-word
|
||||||
"C-z" (cmd! (ignore-errors (call-interactively #'undo))))
|
"C-z" (cmd! (ignore-errors (call-interactively #'undo))))
|
||||||
|
|
||||||
(when (featurep! :editor evil +everywhere)
|
(define-key! :keymaps +default-minibuffer-maps
|
||||||
(define-key! :keymaps +default-minibuffer-maps
|
"C-j" #'next-line
|
||||||
"C-j" #'next-line
|
"C-k" #'previous-line
|
||||||
"C-k" #'previous-line
|
"C-S-j" #'scroll-up-command
|
||||||
"C-S-j" #'scroll-up-command
|
"C-S-k" #'scroll-down-command)
|
||||||
"C-S-k" #'scroll-down-command)
|
;; For folks with `evil-collection-setup-minibuffer' enabled
|
||||||
;; For folks with `evil-collection-setup-minibuffer' enabled
|
(define-key! :states 'insert :keymaps +default-minibuffer-maps
|
||||||
(define-key! :states 'insert :keymaps +default-minibuffer-maps
|
"C-j" #'next-line
|
||||||
"C-j" #'next-line
|
"C-k" #'previous-line)
|
||||||
"C-k" #'previous-line)
|
(define-key! read-expression-map
|
||||||
(define-key! read-expression-map
|
"C-j" #'next-line-or-history-element
|
||||||
"C-j" #'next-line-or-history-element
|
"C-k" #'previous-line-or-history-element))
|
||||||
"C-k" #'previous-line-or-history-element)))
|
|
||||||
|
|
||||||
|
|
||||||
;;
|
;;
|
||||||
|
Reference in New Issue
Block a user