Function: cider--tooling-file-p

cider--tooling-file-p is a byte-compiled function defined in cider-util.el.

Signature

(cider--tooling-file-p FILE-NAME)

Documentation

Return t if FILE-NAME is not a real source file.

Currently, only check if the relative file name starts with form-init which nREPL uses for temporary evaluation file names.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-util.el
(defun cider--tooling-file-p (file-name)
  "Return t if FILE-NAME is not a real source file.
Currently, only check if the relative file name starts with `form-init'
which nREPL uses for temporary evaluation file names."
  (let ((fname (file-name-nondirectory file-name)))
    (string-match-p "^form-init" fname)))