Skip to content

Commit 58fb83c

Browse files
committed
fix(company): completing-read interface on C-S-s
C-S-s while company is completing shoudl bring up the results in your completion framework of choice (ivy, helm, vertico, etc), but failed to do so for vertico (for any completion backend besides company-capf perhaps).
1 parent 57e9965 commit 58fb83c

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

modules/completion/company/autoload.el

+15
Original file line numberDiff line numberDiff line change
@@ -155,3 +155,18 @@ C-x C-l."
155155
(let ((company-selection-wrap-around t))
156156
(call-interactively #'+company/dabbrev)
157157
(company-select-previous-or-abort)))
158+
159+
;;;###autoload
160+
(defun +company/completing-read ()
161+
"Complete current company candidates in minibuffer.
162+
163+
Uses ivy, helm, vertico, or ido, if available."
164+
(interactive)
165+
(cond ((modulep! :completion ivy)
166+
(call-interactively #'counsel-company))
167+
((modulep! :completion helm)
168+
(call-interactively #'helm-company))
169+
((not company-candidates)
170+
(user-error "No company candidates available"))
171+
((when-let (cand (completing-read "Candidate: " company-candidates))
172+
(company-finish cand)))))

modules/config/default/+evil-bindings.el

+1-3
Original file line numberDiff line numberDiff line change
@@ -142,9 +142,7 @@
142142
"C-u" #'company-previous-page
143143
"C-d" #'company-next-page
144144
"C-s" #'company-filter-candidates
145-
"C-S-s" (cond ((modulep! :completion vertico) #'completion-at-point)
146-
((modulep! :completion ivy) #'counsel-company)
147-
((modulep! :completion helm) #'helm-company))
145+
"C-S-s" #'+company/completing-read
148146
"C-SPC" #'company-complete-common
149147
"TAB" #'company-complete-common-or-cycle
150148
[tab] #'company-complete-common-or-cycle

0 commit comments

Comments
 (0)