Function: cider-test--prompt-for-selectors

cider-test--prompt-for-selectors is a byte-compiled function defined in cider-test.el.

Signature

(cider-test--prompt-for-selectors MESSAGE)

Documentation

Prompt for test selectors with MESSAGE.

The selectors can be either keywords or strings.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-test.el
(defun cider-test--prompt-for-selectors (message)
  "Prompt for test selectors with MESSAGE.
The selectors can be either keywords or strings."
  (mapcar
   (lambda (string) (replace-regexp-in-string "^:+" "" string))
   (split-string
    (cider-read-from-minibuffer message))))