Function: clojure--looking-at-non-logical-sexp
clojure--looking-at-non-logical-sexp is a byte-compiled function
defined in clojure-mode.el.
Signature
(clojure--looking-at-non-logical-sexp)
Documentation
Return non-nil if text after point is "non-logical" sexp.
"Non-logical" sexp are ^metadata and #reader.macros.
Source Code
;; Defined in ~/.emacs.d/elpa/clojure-mode-20260325.811/clojure-mode.el
;;; Sexp navigation
(defun clojure--looking-at-non-logical-sexp ()
"Return non-nil if text after point is \"non-logical\" sexp.
\"Non-logical\" sexp are ^metadata and #reader.macros."
(comment-forward (point-max))
(looking-at-p "\\(?:#?\\^\\)\\|#:?:?[[:alpha:]]"))