Variable: cider-path-translations

cider-path-translations is a customizable variable defined in cider-common.el.

Value

nil

Documentation

Alist of path prefixes to path prefixes.

Useful to intercept the location of a path in a container (or virtual machine) and translate to the original location. If your project is located at "~/projects/foo" and the src directory of foo is mounted at "/src" in the container, the alist would be `(("/src" "~/projects/foo/src")).

This variable was added, or its default value changed, in cider version 0.23.0.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-common.el
(defcustom cider-path-translations nil
  "Alist of path prefixes to path prefixes.
Useful to intercept the location of a path in a container (or virtual
machine) and translate to the original location.  If your project is located
at \"~/projects/foo\" and the src directory of foo is mounted at \"/src\"
in the container, the alist would be `((\"/src\" \"~/projects/foo/src\"))."
  :type '(alist :key-type string :value-type string)
  :group 'cider
  :package-version '(cider . "0.23.0"))