Filter buffer and bookmark list only via orderless completion

I don't expect basic completion here, only the matching style from ivy.
This commit is contained in:
Daniel - 2024-03-17 09:11:38 +01:00
parent 8876f04756
commit 53a0c1b56b
Signed by: dbo
GPG Key ID: 784AA8DF0CCDF625
1 changed files with 2 additions and 1 deletions

View File

@ -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)))))