Function: helpful-kill-buffers

helpful-kill-buffers is an interactive and byte-compiled function defined in helpful.el.

Signature

(helpful-kill-buffers)

Documentation

Kill all helpful-mode buffers.

See also helpful-max-buffers.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/helpful-20250408.334/helpful.el
(defun helpful-kill-buffers ()
  "Kill all `helpful-mode' buffers.

See also `helpful-max-buffers'."
  (interactive)
  (dolist (buffer (buffer-list))
    (when (eq (buffer-local-value 'major-mode buffer) 'helpful-mode)
      (kill-buffer buffer))))