Function: cider-sync-request:info

cider-sync-request:info is a byte-compiled function defined in cider-client.el.

Signature

(cider-sync-request:info SYMBOL &optional CLASS MEMBER CONTEXT)

Documentation

Send "info" op with parameters SYMBOL or CLASS and MEMBER, honor CONTEXT.

This positional form is kept for backward compatibility; new code should prefer the keyword-argument cider-info-request.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260807.1133/cider-client.el
(defun cider-sync-request:info (symbol &optional class member context)
  "Send \"info\" op with parameters SYMBOL or CLASS and MEMBER, honor CONTEXT.

This positional form is kept for backward compatibility; new code should
prefer the keyword-argument `cider-info-request'."
  (cider-info-request :sym symbol :class class :member member :context context))