Function: cider-random-tip
cider-random-tip is a byte-compiled function defined in cider-util.el.
Signature
(cider-random-tip)
Documentation
Select a random tip from cider-tips.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-util.el
(defun cider-random-tip ()
"Select a random tip from `cider-tips'."
(substitute-command-keys (nth (random (length cider-tips)) cider-tips)))