Function: cider-highlight-arglist

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

Signature

(cider-highlight-arglist ARGLIST POS)

Documentation

Format the ARGLIST for eldoc.

POS is the index of the argument to highlight.

Source Code

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