Function: vc-git-annotate-command
vc-git-annotate-command is a byte-compiled function defined in
vc-git.el.gz.
Signature
(vc-git-annotate-command FILE BUF &optional REV)
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc-git.el.gz
(defun vc-git-annotate-command (file buf &optional rev)
(vc-git--asciify-coding-system)
(let ((name (file-relative-name file)))
(apply #'vc-git-command buf 'async nil "blame" "--date=short"
(append (vc-switches 'git 'annotate)
(list rev "--" name)))))