Function: cider-macrostep--operator

cider-macrostep--operator is a byte-compiled function defined in cider-macrostep.el.

Signature

(cider-macrostep--operator BEG)

Documentation

Return the operator (a string) of the list form starting at BEG, or nil.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-macrostep.el
(defun cider-macrostep--operator (beg)
  "Return the operator (a string) of the list form starting at BEG, or nil."
  (save-excursion
    (goto-char (1+ beg))
    (skip-chars-forward " \t\n")
    (when (looking-at-p "[^][(){} \t\n]")
      (buffer-substring-no-properties (point) (progn (forward-sexp) (point))))))