Function: cider-repl--find-dir-for-history

cider-repl--find-dir-for-history is a byte-compiled function defined in cider-repl.el.

Signature

(cider-repl--find-dir-for-history)

Documentation

Find the first suitable directory to store the project's history.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl.el
(defun cider-repl--find-dir-for-history ()
  "Find the first suitable directory to store the project's history."
  (seq-find
   (lambda (dir) (and dir (not (tramp-tramp-file-p dir))))
   (list nrepl-project-dir (clojure-project-dir) default-directory)))