Function: vc-dir-show-fileentry
vc-dir-show-fileentry is an interactive and byte-compiled function
defined in vc-dir.el.gz.
Signature
(vc-dir-show-fileentry FILE)
Documentation
Insert an entry for a specific file into the current *VC-dir* listing.
This is typically used if the file is up-to-date (or has been added outside of VC) and one wants to do some operation on it.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc-dir.el.gz
(defun vc-dir-show-fileentry (file)
"Insert an entry for a specific file into the current *VC-dir* listing.
This is typically used if the file is up-to-date (or has been added
outside of VC) and one wants to do some operation on it."
(interactive "fShow file: ")
(vc-dir-update (list (list (file-relative-name file) (vc-state file))) (current-buffer)))