Function: tabulated-list-revert

tabulated-list-revert is an interactive and byte-compiled function defined in tabulated-list.el.gz.

Signature

(tabulated-list-revert &rest IGNORED)

Documentation

The revert-buffer-function for tabulated-list-mode.

It runs tabulated-list-revert-hook, then calls tabulated-list-print.

Probably introduced at or before Emacs version 27.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/tabulated-list.el.gz
(defun tabulated-list-revert (&rest ignored)
  "The `revert-buffer-function' for `tabulated-list-mode'.
It runs `tabulated-list-revert-hook', then calls `tabulated-list-print'."
  (interactive)
  (unless (derived-mode-p 'tabulated-list-mode)
    (error "The current buffer is not in Tabulated List mode"))
  (run-hooks 'tabulated-list-revert-hook)
  (tabulated-list-print t))