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