Function: consult--async-wrap

consult--async-wrap is a byte-compiled function defined in consult.el.

Signature

(consult--async-wrap ASYNC)

Documentation

Wrap ASYNC function with the default pipeline.

The default pipeline provides consult--async-split, consult--async-indicator and consult--async-refresh.

Source Code

;; Defined in ~/.emacs.d/elpa/consult-20260805.1130/consult.el
(defun consult--async-wrap (async)
  "Wrap ASYNC function with the default pipeline.
The default pipeline provides `consult--async-split',
`consult--async-indicator' and `consult--async-refresh'."
  (consult--async-pipeline
   (consult--async-split)
   async
   (consult--async-indicator)
   (consult--async-refresh)))