Skip to content

Commit

Permalink
Merge pull request #2631 from renatofdds/master
Browse files Browse the repository at this point in the history
Fix helm-completion--initial-filter for candidates with no affixation
  • Loading branch information
thierryvolpiatto committed Dec 6, 2023
2 parents e9cc7a8 + 88bfa04 commit 2d41cd8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions helm-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2d41cd8

Please sign in to comment.