Function: cider-test-menu--selectors
cider-test-menu--selectors is a byte-compiled function defined in
cider-test.el.
Signature
(cider-test-menu--selectors VALUE)
Documentation
Split VALUE into a list of selector strings, stripping leading colons.
Return nil when VALUE is nil.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-test.el
(defun cider-test-menu--selectors (value)
"Split VALUE into a list of selector strings, stripping leading colons.
Return nil when VALUE is nil."
(when value
(mapcar (lambda (selector) (replace-regexp-in-string "\\`:+" "" selector))
(split-string value))))