From 53a0c1b56b78cde5401ff2accb5a751263178518 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sun, 17 Mar 2024 09:11:38 +0100 Subject: [PATCH] Filter buffer and bookmark list only via orderless completion I don't expect basic completion here, only the matching style from ivy. --- init.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index 6c41316..de0fcbc 100644 --- a/init.el +++ b/init.el @@ -2091,7 +2091,8 @@ Note that this workaround is incomplete, as explained in this comment." completion-category-defaults nil ;; Via https://protesilaos.com/emacs/dotemacs, with additional changes completion-category-overrides '((file (styles . (basic partial-completion orderless))) - (bookmark (styles . (basic substring orderless))) + (buffer (styles . (orderless))) + (bookmark (styles . (orderless))) (imenu (styles . (basic substring orderless))) (kill-ring (styles . (emacs22 orderless)))))