From 77033f7e384cbd6c30772ff920c3bd9ef3b6495c Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Mon, 19 Feb 2024 08:11:15 +0000 Subject: [PATCH] Remove consult-recent-file and consult-imenu binds Keep remap of original imenu to consult-imenu though Add consult-outline bind --- config/completion.org | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/config/completion.org b/config/completion.org index 343aad9..58e4676 100644 --- a/config/completion.org +++ b/config/completion.org @@ -1,5 +1,8 @@ #+title: Completion #+author: Evie Litherland-Smith +#+email: evie@xenia.me.uk +#+filetags: :emacs:config:org: +#+property: header-args:emacs-lisp :tangle yes :mkdirp yes :results output silent * Vertico #+begin_src emacs-lisp (use-package vertico @@ -107,11 +110,10 @@ (" " . consult-project-buffer) (" " . consult-org-heading) ("C-c s l" . consult-line) - ("C-c s r" . consult-recent-file) + ("C-c s o" . consult-outline) ("C-c s f" . consult-fd) ("C-c s g" . consult-ripgrep) ("C-c s e" . consult-flymake) - ("C-c s j" . consult-imenu) ("C-c s i" . consult-info) :map minibuffer-local-map ("C-r" . consult-history))