Function: cider--kw-to-symbol

cider--kw-to-symbol is a byte-compiled function defined in cider-common.el.

Signature

(cider--kw-to-symbol KW)

Documentation

Convert the keyword KW to a symbol.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-common.el
(defun cider--kw-to-symbol (kw)
  "Convert the keyword KW to a symbol."
  (when kw
    (replace-regexp-in-string "\\`:+" "" kw)))