Function: cider-history-occur

cider-history-occur is an interactive and byte-compiled function defined in cider-history.el.

Signature

(cider-history-occur REGEXP)

Documentation

Display all command history entries matching REGEXP.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-history.el
(defun cider-history-occur (regexp)
  "Display all command history entries matching REGEXP."
  (interactive
   (list (cider-history-read-regexp
          "Display command history entries matching" nil)))
  (cl-assert (eq major-mode 'cider-history-mode))
  (cider-history-setup cider-history-repl-window
                            cider-history-repl-buffer
                            (current-buffer)
                            regexp)
  (cider-history-resize-window))