Variable: vc-git-annotate-switches
vc-git-annotate-switches is a customizable variable defined in
vc-git.el.gz.
Value
nil
Documentation
String or list of strings specifying switches for Git blame under VC.
If nil, use the value of vc-annotate-switches. If t, use no switches.
Tip: Set this to "-w" to make Git blame ignore whitespace when
comparing changes. See Man page git-blame for more.
This variable was added, or its default value changed, in Emacs 25.1.
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc-git.el.gz
(defcustom vc-git-annotate-switches nil
"String or list of strings specifying switches for Git blame under VC.
If nil, use the value of `vc-annotate-switches'. If t, use no switches.
Tip: Set this to \"-w\" to make Git blame ignore whitespace when
comparing changes. See Man page `git-blame' for more."
:type '(choice (const :tag "Unspecified" nil)
(const :tag "None" t)
(string :tag "Argument String")
(repeat :tag "Argument List" :value ("") string))
:version "25.1")