Function: cape-wrap-passthrough
cape-wrap-passthrough is an autoloaded and byte-compiled function
defined in cape.el.
Signature
(cape-wrap-passthrough CAPF)
Documentation
Call CAPF and make sure that no completion style filtering takes place.
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-passthrough (capf)
"Call CAPF and make sure that no completion style filtering takes place.
This function can be used as an advice around an existing Capf."
(pcase (funcall capf)
(`(,beg ,end ,table . ,plist)
`(,beg ,end ,(cape--passthrough-table table) ,@plist))))