branch: externals/vertico commit e348e1a26a3dbfc99b80f6fc463635e4dc01f82c Author: Daniel Mendler <m...@daniel-mendler.de> Commit: Daniel Mendler <m...@daniel-mendler.de>
README: Remove consult-completing-read-multiple --- README.org | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/README.org b/README.org index 254530f5b7..a9ab23341f 100644 --- a/README.org +++ b/README.org @@ -93,7 +93,6 @@ configuration: (use-package emacs :init ;; Add prompt indicator to `completing-read-multiple'. - ;; Alternatively try `consult-completing-read-multiple'. (defun crm-indicator (args) (cons (concat "[CRM] " (car args)) (cdr args))) (advice-add #'completing-read-multiple :filter-args #'crm-indicator) @@ -214,16 +213,6 @@ You may also want to look into my [[https://github.com/minad/corfu][Corfu]] pack completion system for =completion-in-region= in a child frame popup. Corfu is also a narrowly focused package and developed in the same spirit as Vertico. -** Completing-read-multiple (CRM) - -Consult offers an enhanced =completing-read-multiple= implementation which you can -use with Vertico. - -#+begin_src emacs-lisp - (advice-add #'completing-read-multiple - :override #'consult-completing-read-multiple) -#+end_src - * Extensions :properties: :custom_id: extensions