summaryrefslogtreecommitdiff
path: root/emacs/.config/emacs-kj/init.el
diff options
context:
space:
mode:
authorKjetil Orbekk <kj@orbekk.com>2024-01-06 13:40:21 -0500
committerKjetil Orbekk <kj@orbekk.com>2024-01-06 13:40:21 -0500
commit5f7928a2581036ce5ef400ed376e05d05d3ac966 (patch)
treea0c55012e1bfe494ec3efc360689ef2f15719f09 /emacs/.config/emacs-kj/init.el
parenta2f318ff5c3140f0855df179ec7edef5dae87293 (diff)
update
Diffstat (limited to 'emacs/.config/emacs-kj/init.el')
-rw-r--r--emacs/.config/emacs-kj/init.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/emacs/.config/emacs-kj/init.el b/emacs/.config/emacs-kj/init.el
index 1168cc5..b596c39 100644
--- a/emacs/.config/emacs-kj/init.el
+++ b/emacs/.config/emacs-kj/init.el
@@ -254,7 +254,7 @@
(use-package consult
;; Replace bindings. Lazily loaded due by `use-package'.
:bind (;; C-c bindings (mode-specific-map)
- ("C-c h" . consult-history)
+ ("C-c h" . kj/consult-history)
;;("C-c m" . consult-mode-command)
("C-c k" . consult-kmacro)
;; C-x bindings (ctl-x-map)
@@ -303,8 +303,8 @@
("M-s L" . consult-line-multi) ;; needed by consult-line to detect isearch
;; Minibuffer history
:map minibuffer-local-map
- ("M-s" . consult-history) ;; orig. next-matching-history-element
- ("M-r" . consult-history)) ;; orig. previous-matching-history-element
+ ("M-s" . kj/consult-history) ;; orig. next-matching-history-element
+ ("M-r" . kj/consult-history)) ;; orig. previous-matching-history-element
;; Enable automatic preview at point in the *Completions* buffer. This is
;; relevant when you use the default completion UI.