From 4a0e3f8aa226ea7012f3d63d2bb59b1cedd3eaa7 Mon Sep 17 00:00:00 2001 From: David Morgan Date: Thu, 26 Sep 2024 16:01:22 +0100 Subject: Re-order slightly --- .emacs.d/lisp/init-minibuffer.el | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to '.emacs.d') diff --git a/.emacs.d/lisp/init-minibuffer.el b/.emacs.d/lisp/init-minibuffer.el index 80b4a91..37e543b 100644 --- a/.emacs.d/lisp/init-minibuffer.el +++ b/.emacs.d/lisp/init-minibuffer.el @@ -17,15 +17,6 @@ (setq enable-recursive-minibuffers t) (minibuffer-depth-indicate-mode t) - ;; https://github.com/minad/vertico/wiki#ding-when-wrapping-around - (advice-add #'vertico-next - :around - #'(lambda (origin &rest args) - (let ((beg-index vertico--index)) - (apply origin args) - (if (not (eq 1 (abs (- beg-index vertico--index)))) - (ding))))) - ;; Add prompt indicator to `completing-read-multiple'. ;; We display [CRM], e.g., [CRM,] if the separator is a comma. (defun crm-indicator (args) @@ -51,6 +42,15 @@ " ") cand))) + ;; https://github.com/minad/vertico/wiki#ding-when-wrapping-around + (advice-add #'vertico-next + :around + #'(lambda (origin &rest args) + (let ((beg-index vertico--index)) + (apply origin args) + (if (not (eq 1 (abs (- beg-index vertico--index)))) + (ding))))) + (defun down-from-outside () "Move to next candidate in minibuffer, even when minibuffer isn't selected." (interactive) -- cgit 1.4.1-2-gfad0 artik/mu/diff/x.mu?h=main&id=064aaaa4327f2ea9eb9a52b8ff2b22e168861eb1'>diff stats
path: root/x.mu