Function: cider-log--do-add-consumer

cider-log--do-add-consumer is an interactive and byte-compiled function defined in cider-log.el.

Signature

(cider-log--do-add-consumer ARG1 ARG2 ARG3 ARG4)

Documentation

Add the CONSUMER to the APPENDER of the log FRAMEWORK and write events to BUFFER.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-log.el
;; Consumer actions

(transient-define-suffix cider-log--do-add-consumer (framework appender consumer buffer)
  "Add the CONSUMER to the APPENDER of the log FRAMEWORK and write events to BUFFER."
  :description "Add log consumer"
  :inapt-if #'cider-log-consumer-attached-p
  (interactive (list (cider-log--framework)
                     (cider-log--appender)
                     (cider-log--consumer)
                     (current-buffer)))
  (cider-log--consumer-add framework appender consumer buffer))