Function: cider--all-path-translations
cider--all-path-translations is a byte-compiled function defined in
cider-common.el.
Signature
(cider--all-path-translations)
Documentation
Returns cider-path-translations if non-empty, else seeks a present value.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-common.el
(defun cider--all-path-translations ()
"Returns `cider-path-translations' if non-empty, else seeks a present value."
(or cider-path-translations
;; cider-path-translations often is defined as a directory-local variable,
;; so after jumping to a .jar file, its value can be lost,
;; so we have to figure out a possible translation:
(thread-last (buffer-list)
(seq-map (lambda (buffer)
(buffer-local-value 'cider-path-translations buffer)))
(seq-filter #'identity)
(seq-uniq)
(apply #'append)
(seq-uniq))))