Variable: vc-dir-show-outgoing-count

vc-dir-show-outgoing-count is a customizable variable defined in vc-dir.el.gz.

This variable is obsolete since 32.1.

Value

t

Documentation

Whether to display the number of unpushed revisions in VC-Dir.

This variable was for when the number of unpushed revisions was counted synchronously. As that is now done asynchronously, this toggle is no longer needed.

This variable was added, or its default value changed, in Emacs 31.1.

Probably introduced at or before Emacs version 31.1.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc-dir.el.gz
(defcustom vc-dir-show-outgoing-count t
  "Whether to display the number of unpushed revisions in VC-Dir.
This variable was for when the number of unpushed revisions was counted
synchronously.  As that is now done asynchronously, this toggle is no
longer needed."
  :type 'boolean
  :safe #'booleanp
  :group 'vc
  :version "31.1")