1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-18 18:05:07 +00:00

* lisp/vc/vc-git.el (vc-git-annotate-switches): Add useful tip.

This commit is contained in:
Stefan Kangas 2023-09-03 12:04:20 +02:00
parent 15dc22124c
commit d871518724

View File

@ -122,7 +122,10 @@ If nil, use the value of `vc-diff-switches'. If t, use no switches."
(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."
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")