Function: vtable-revert-command
vtable-revert-command is an interactive and byte-compiled function
defined in vtable.el.gz.
Signature
(vtable-revert-command)
Documentation
Re-query data and regenerate the table under point.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/vtable.el.gz
(defun vtable-revert-command ()
"Re-query data and regenerate the table under point."
(interactive)
(let ((table (vtable-current-table)))
(when (vtable-objects-function table)
(setf (vtable-objects table) (funcall (vtable-objects-function table))))
(vtable--clear-cache table))
(vtable-revert))