Function: vc-annotate-toggle-annotation-visibility

vc-annotate-toggle-annotation-visibility is an interactive and byte-compiled function defined in vc-annotate.el.gz.

Signature

(vc-annotate-toggle-annotation-visibility)

Documentation

Toggle whether or not the annotation is visible.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc-annotate.el.gz
(defun vc-annotate-toggle-annotation-visibility ()
  "Toggle whether or not the annotation is visible."
  (interactive)
  (funcall (if (memq 'vc-annotate-annotation buffer-invisibility-spec)
               'remove-from-invisibility-spec
             'add-to-invisibility-spec)
           'vc-annotate-annotation)
  (force-window-update (current-buffer)))