mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
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).
This commit is contained in:
@ -142,9 +142,7 @@
|
||||
"C-u" #'company-previous-page
|
||||
"C-d" #'company-next-page
|
||||
"C-s" #'company-filter-candidates
|
||||
"C-S-s" (cond ((modulep! :completion vertico) #'completion-at-point)
|
||||
((modulep! :completion ivy) #'counsel-company)
|
||||
((modulep! :completion helm) #'helm-company))
|
||||
"C-S-s" #'+company/completing-read
|
||||
"C-SPC" #'company-complete-common
|
||||
"TAB" #'company-complete-common-or-cycle
|
||||
[tab] #'company-complete-common-or-cycle
|
||||
|
Reference in New Issue
Block a user