Variable: cider-ps-running-lein-nrepl-path-regexp-list

cider-ps-running-lein-nrepl-path-regexp-list is a variable defined in cider.el.

Value

("\\(?:leiningen.original.pwd=\\)\\(.+?\\) -D" "\\(?:-classpath +:?\\(.+?\\)/self-installs\\)")

Documentation

Regexp list to get project paths.

Extract project paths from output of cider-ps-running-lein-nrepls-command. Sub-match 1 must be the project path.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider.el
(defvar cider-ps-running-lein-nrepl-path-regexp-list
  '("\\(?:leiningen.original.pwd=\\)\\(.+?\\) -D"
    "\\(?:-classpath +:?\\(.+?\\)/self-installs\\)")
  "Regexp list to get project paths.
Extract project paths from output of `cider-ps-running-lein-nrepls-command'.
Sub-match 1 must be the project path.")