changeset 97117:7f5effb50ce7

(vc-dir-menu-map, vc-at-event): Fix docstring. (vc-dir-mode): Improve docstring.
author Dan Nicolaescu <dann@ics.uci.edu>
date Wed, 30 Jul 2008 14:50:08 +0000
parents 0c4716614fc4
children 48b4d1b43ea2
files lisp/ChangeLog lisp/vc-dir.el
diffstat 2 files changed, 24 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Wed Jul 30 14:18:28 2008 +0000
+++ b/lisp/ChangeLog	Wed Jul 30 14:50:08 2008 +0000
@@ -1,3 +1,8 @@
+2008-07-30  Dan Nicolaescu  <dann@ics.uci.edu>
+
+	* vc-dir.el (vc-dir-menu-map, vc-at-event): Fix docstring.
+	(vc-dir-mode): Improve docstring.
+
 2008-07-30  Juri Linkov  <juri@jurta.org>
 
 	* dired-aux.el (dired-isearch-filenames-setup): Add autoload cookie
--- a/lisp/vc-dir.el	Wed Jul 30 14:18:28 2008 +0000
+++ b/lisp/vc-dir.el	Wed Jul 30 14:50:08 2008 +0000
@@ -206,7 +206,7 @@
       '(menu-item "Register" vc-register
 		  :help "Register file set into the version control system"))
     map)
-  "Menu for dispatcher status")
+  "Menu for VC dir")
 
 ;; VC backends can use this to add mode-specific menu items to
 ;; vc-dir-menu-map.
@@ -231,8 +231,9 @@
     (define-key map "+" 'vc-update)	   ;; C-x v +
     (define-key map "l" 'vc-print-log)	   ;; C-x v l
     ;; More confusing than helpful, probably
-    ;;(define-key map "R" 'vc-revert) ;; u is taken by dispatcher unmark.
-    ;;(define-key map "A" 'vc-annotate) ;; g is taken by dispatcher refresh
+    ;;(define-key map "R" 'vc-revert) ;; u is taken by vc-dir-unmark.
+    ;;(define-key map "A" 'vc-annotate) ;; g is taken by revert-buffer
+    ;;                                     bound by `special-mode'.
     ;; Marking.
     (define-key map "m" 'vc-dir-mark)
     (define-key map "M" 'vc-dir-mark-all-files)
@@ -285,7 +286,7 @@
          ,@body))))
 
 (defun vc-dir-menu (e)
-  "Popup the dispatcher status menu."
+  "Popup the VC dir menu."
   (interactive "e")
   (vc-at-event e (popup-menu vc-dir-menu-map e)))
 
@@ -871,7 +872,7 @@
 (defvar use-vc-backend)  ;; dynamically bound
 
 (define-derived-mode vc-dir-mode special-mode "VC dir"
-  "Major mode for dispatcher directory buffers.
+  "Major mode for VC directory buffers.
 Marking/Unmarking key bindings and actions:
 m - marks a file/directory or if the region is active, mark all the files
      in region.
@@ -889,6 +890,19 @@
   - if the cursor is on a directory: unmark all child files
   - with a prefix argument: unmark all files
 
+VC commands
+VC commands in the `C-x v' can be used, they act on the marked
+entries, or on the current entry if nothing is marked.
+
+Search & Replace
+S - searches the marked files
+Q - does a query replace on the marked files
+M-s a C-s - does an isearch on the marked files
+M-s a C-M-s - does an isearch on the marked files
+If nothing is marked, these commands act on the current entry.
+When a directory is current or marked, the Search & Replace
+commands act on the files in those directories displayed in the
+*vc-dir* buffer.
 
 \\{vc-dir-mode-map}"
   (set (make-local-variable 'vc-dir-backend) use-vc-backend)