Function: cider-second-sexp-in-list

cider-second-sexp-in-list is a byte-compiled function defined in cider-util.el.

Signature

(cider-second-sexp-in-list)

Documentation

Return the second sexp in the list at point.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-util.el
(defun cider-second-sexp-in-list ()
  "Return the second sexp in the list at point."
  (condition-case nil
      (save-excursion
        (backward-up-list)
        (forward-char)
        (forward-sexp 2)
        (cider-sexp-at-point))
    (error nil)))