Variable: cvs-reuse-cvs-buffer
cvs-reuse-cvs-buffer is a customizable variable defined in
pcvs-defs.el.gz.
Value
subdir
Documentation
When to reuse an existing cvs buffer.
Alternatives are:
current: just reuse the current buffer if it is a cvs buffer
samedir: reuse any cvs buffer displaying the same directory
subdir: or reuse any cvs buffer displaying any sub- or super- directory
always: reuse any cvs buffer.
Source Code
;; Defined in /usr/src/emacs/lisp/vc/pcvs-defs.el.gz
;;;;
;;;; Internal variables for the *cvs* buffer.
;;;;
(defcustom cvs-reuse-cvs-buffer 'subdir
"When to reuse an existing cvs buffer.
Alternatives are:
`current': just reuse the current buffer if it is a cvs buffer
`samedir': reuse any cvs buffer displaying the same directory
`subdir': or reuse any cvs buffer displaying any sub- or super- directory
`always': reuse any cvs buffer."
:type '(choice (const always) (const subdir) (const samedir) (const current)))