diff options
author | David Morgan <djm_uk@protonmail.com> | 2024-09-13 14:21:53 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2024-09-13 14:21:53 +0100 |
commit | b8f11c103b17c45dd0dbc983bf6ae33da0b6b3c3 (patch) | |
tree | 877efd24c2701c9fd588f1ea282ee2e4d9971c4c | |
parent | 2077124bf261ec55722146737e7745d84559d31f (diff) | |
download | dotfiles-b8f11c103b17c45dd0dbc983bf6ae33da0b6b3c3.tar.gz |
Fix binding missed after a consult command name change
-rw-r--r-- | .emacs.d/lisp/init-minibuffer.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.emacs.d/lisp/init-minibuffer.el b/.emacs.d/lisp/init-minibuffer.el index 69fec18..e417c95 100644 --- a/.emacs.d/lisp/init-minibuffer.el +++ b/.emacs.d/lisp/init-minibuffer.el @@ -236,7 +236,7 @@ DEFS is a plist associating completion categories to commands." ("m" . consult-multi-occur) ("k" . consult-keep-lines) ("u" . consult-focus-lines) - ("e" . consult-isearch)) + ("e" . consult-isearch-history)) (:map vertico-map ;; These are used for previewing with some consult commands (see consult-customize call below) ("C-S-p" . vertico-previous) |