Function: cider--uppercase-command-p

cider--uppercase-command-p is a byte-compiled function defined in cider-debug.el.

Signature

(cider--uppercase-command-p)

Documentation

Return non-nil if the last command was uppercase letter.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-debug.el
(defun cider--uppercase-command-p ()
  "Return non-nil if the last command was uppercase letter."
  (ignore-errors
    (let ((case-fold-search nil))
      (string-match "[[:upper:]]" (string last-command-event)))))