Variable: cider-from-nrepl-filename-function
cider-from-nrepl-filename-function is a variable defined in
cider-common.el.
Value
#[257 "\301=\203\f\302!\202
\211\303!\206\211\207"
[system-type cygwin cygwin-convert-file-name-from-windows cider--translate-path-from-nrepl]
4 "\n\n(fn PATH)"]
Documentation
Function to translate nREPL namestrings to Emacs filenames.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-common.el
(defvar cider-from-nrepl-filename-function
(with-no-warnings
(lambda (path)
(let ((path* (if (eq system-type 'cygwin)
(cygwin-convert-file-name-from-windows path)
path)))
(or (cider--translate-path-from-nrepl path*) path*))))
"Function to translate nREPL namestrings to Emacs filenames.")