From 88bfa0406ee5182fde0689e81c128a7396a670ac Mon Sep 17 00:00:00 2001 From: Renato Ferreira Date: Wed, 6 Dec 2023 12:28:42 -0300 Subject: [PATCH] Fix helm-completion--initial-filter for candidates with no affixation --- helm-mode.el | 1 + 1 file changed, 1 insertion(+) diff --git a/helm-mode.el b/helm-mode.el index 5620682f7..792ed762d 100644 --- a/helm-mode.el +++ b/helm-mode.el @@ -2236,6 +2236,7 @@ When AFUN, AFIX are nil and CATEGORY is not file return COMPS unmodified." (if (functionp affixations) (cl-loop for comp in comps for cand = (funcall affixations comp) + when cand collect (cons (propertize (concat (nth 1 cand) ;prefix (nth 0 cand) ;comp (nth 2 cand)) ;suffix