mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
selectrum: improve ivy parity
- add `completion-at-point` as analogue to `cousnel-company` - fix emacs-bindings `counsel-company` binding to respect helm and selectrum - add org jump commands `consult-org-heading` and `consult-org-agenda` bindings - add `consult-history` as `counsel-minibuffer-history` analogue - add support for `doom/help-search` - update TODO.org
This commit is contained in:
@ -138,8 +138,9 @@
|
||||
"C-u" #'company-previous-page
|
||||
"C-d" #'company-next-page
|
||||
"C-s" #'company-filter-candidates
|
||||
"C-S-s" (cond ((featurep! :completion helm) #'helm-company)
|
||||
((featurep! :completion ivy) #'counsel-company))
|
||||
"C-S-s" (cond ((featurep! :completion helm) #'helm-company)
|
||||
((featurep! :completion ivy) #'counsel-company)
|
||||
((featurep! :completion selectrum) #'completion-at-point))
|
||||
"C-SPC" #'company-complete-common
|
||||
"TAB" #'company-complete-common-or-cycle
|
||||
[tab] #'company-complete-common-or-cycle
|
||||
|
Reference in New Issue
Block a user