Function: cider-repl-history-delete-entry-at-point

cider-repl-history-delete-entry-at-point is an interactive and byte-compiled function defined in cider-repl-history.el.

Signature

(cider-repl-history-delete-entry-at-point)

Documentation

Delete history entry (at point).

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl-history.el
(defun cider-repl-history-delete-entry-at-point ()
  "Delete history entry (at point)."
  (interactive)
  (let* ((orig (point))
         (str (cider-repl-history-current-string orig)))
    (with-current-buffer cider-repl-history-repl-buffer
      (delete str cider-repl-input-history))
    (cider-repl-history-update)
    (goto-char orig)))