Function: cape-wrap-accept-all
cape-wrap-accept-all is an autoloaded and byte-compiled function
defined in cape.el.
Signature
(cape-wrap-accept-all CAPF)
Documentation
Call CAPF and return a completion table which accepts every input.
This function can be used as an advice around an existing Capf.
Source Code
;; Defined in ~/.emacs.d/elpa/cape-20260804.2303/cape.el
;;;###autoload
(defun cape-wrap-accept-all (capf)
"Call CAPF and return a completion table which accepts every input.
This function can be used as an advice around an existing Capf."
(pcase (funcall capf)
(`(,beg ,end ,table . ,plist)
`(,beg ,end ,(cape--accept-all-table table) . ,plist))))