Function: cider-eldoc-format-arglist

cider-eldoc-format-arglist is a byte-compiled function defined in cider-eldoc.el.

Signature

(cider-eldoc-format-arglist ARGLIST POS)

Documentation

Format all the ARGLIST for eldoc.

POS is the index of current argument.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-eldoc.el
(defun cider-eldoc-format-arglist (arglist pos)
  "Format all the ARGLIST for eldoc.
POS is the index of current argument."
  (concat "("
          (mapconcat (lambda (args) (cider-highlight-arglist args pos))
                     arglist
                     " ")
          ")"))