From 434a811056792aa4ddac996a7adab4b9716fe946 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Wed, 24 May 2023 23:57:26 -0700 Subject: [oni-core] Put the call to ‘consult-customize’ in separate function I'm having some issues with my ‘consult-buffer’ setup and I'm hoping that putting this in its own function will help me debug the issue, or at least show me if this is part of the issue or not. --- oni-core.el | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'oni-core.el') diff --git a/oni-core.el b/oni-core.el index 38f16c1..ca9b403 100644 --- a/oni-core.el +++ b/oni-core.el @@ -4,7 +4,7 @@ ;; Author: Tom Willemse ;; Keywords: local -;; Version: 2023.0509.234254 +;; Version: 2023.0524.235720 ;; Package-Requires: (oni-data-dir oni-embrace oni-hydra expand-region multiple-cursors gcmh diminish ws-butler which-key insert-char-preview mixed-pitch ace-window vertico marginalia orderless consult embark docstr mini-frame) ;; This program is free software; you can redistribute it and/or modify @@ -450,11 +450,14 @@ _s_: String list" :enabled buffer-file-name :action find-file)) +(defun oni-core-remove-consult-buffer-preview () + (consult-customize consult-buffer :preview-key nil)) + (with-eval-after-load 'consult (with-eval-after-load 'related-files (add-to-list 'consult-buffer-sources 'oni-core-related-places-source)) - (consult-customize consult-buffer :preview-key nil)) + (oni-core-remove-consult-buffer-preview)) ;;; Embark -- cgit v1.2.3-54-g00ecf