Function: cider-in-string-p
cider-in-string-p is a byte-compiled function defined in
cider-util.el.
Signature
(cider-in-string-p)
Documentation
Return non-nil if point is in a string.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-util.el
(defun cider-in-string-p ()
"Return non-nil if point is in a string."
(let ((beg (save-excursion (beginning-of-defun-raw) (point))))
(nth 3 (parse-partial-sexp beg (point)))))