emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r113563: Keybinding fix for vc-dir.


From: Xue Fuqiao
Subject: [Emacs-diffs] trunk r113563: Keybinding fix for vc-dir.
Date: Sat, 27 Jul 2013 00:09:57 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 113563
revision-id: address@hidden
parent: address@hidden
committer: Xue Fuqiao <address@hidden>
branch nick: trunk
timestamp: Sat 2013-07-27 08:09:51 +0800
message:
  Keybinding fix for vc-dir.
  
  * lisp/vc/vc-dir.el (vc-dir-mode-map): Add binding for vc-root-diff.
  * doc/emacs/maintaining.texi (VC Directory Commands): Mention `D' and `L' in 
vc-dir.
modified:
  doc/emacs/ChangeLog            changelog-20091113204419-o5vbwnq5f7feedwu-6227
  doc/emacs/maintaining.texi     
maintaining.texi-20091113204419-o5vbwnq5f7feedwu-6262
  etc/NEWS                       news-20100311060928-aoit31wvzf25yr1z-1
  lisp/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-1432
  lisp/vc/vc-dir.el              vcdir.el-20091113204419-o5vbwnq5f7feedwu-8693
=== modified file 'doc/emacs/ChangeLog'
--- a/doc/emacs/ChangeLog       2013-07-26 06:56:35 +0000
+++ b/doc/emacs/ChangeLog       2013-07-27 00:09:51 +0000
@@ -1,3 +1,7 @@
+2013-07-27  Xue Fuqiao  <address@hidden>
+
+       * maintaining.texi (VC Directory Commands): Mention `D' and `L' in 
vc-dir.
+
 2013-07-26  Eli Zaretskii  <address@hidden>
 
        * display.texi (Fringes): Document the variable fringe-mode.

=== modified file 'doc/emacs/maintaining.texi'
--- a/doc/emacs/maintaining.texi        2013-07-03 03:20:04 +0000
+++ b/doc/emacs/maintaining.texi        2013-07-27 00:09:51 +0000
@@ -1222,7 +1222,7 @@
 
   The VC Directory buffer also defines some single-key shortcuts for
 VC commands with the @kbd{C-x v} prefix: @kbd{=}, @kbd{+}, @kbd{l},
address@hidden, and @kbd{v}.
address@hidden, @kbd{D}, @kbd{L} and @kbd{v}.
 
   For example, you can commit a set of edited files by opening a VC
 Directory buffer, where the files are listed with the @samp{edited}

=== modified file 'etc/NEWS'
--- a/etc/NEWS  2013-07-26 09:33:38 +0000
+++ b/etc/NEWS  2013-07-27 00:09:51 +0000
@@ -233,6 +233,11 @@
 *** New variable `diary-from-outlook-function', used by the command
 `diary-from-outlook'.
 
+** VC Directory Mode
+
+*** `D' displays diffs between VC-controlled whole tree revisions.
+*** `L' lists the change log for the current VC controlled tree in a window.
+
 ** cl-lib
 
 *** New macro cl-tagbody.

=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2013-07-26 18:48:05 +0000
+++ b/lisp/ChangeLog    2013-07-27 00:09:51 +0000
@@ -1,3 +1,7 @@
+2013-07-26  Xue Fuqiao  <address@hidden>
+
+       * vc/vc-dir.el (vc-dir-mode-map): Add binding for vc-root-diff.
+
 2013-07-26  Stefan Monnier  <address@hidden>
 
        * emacs-lisp/nadvice.el (advice--called-interactively-skip): Use the new

=== modified file 'lisp/vc/vc-dir.el'
--- a/lisp/vc/vc-dir.el 2013-07-26 09:49:59 +0000
+++ b/lisp/vc/vc-dir.el 2013-07-27 00:09:51 +0000
@@ -237,6 +237,7 @@
     ;; VC commands
     (define-key map "v" 'vc-next-action)   ;; C-x v v
     (define-key map "=" 'vc-diff)         ;; C-x v =
+    (define-key map "D" 'vc-root-diff)    ;; C-x v D
     (define-key map "i" 'vc-register)     ;; C-x v i
     (define-key map "+" 'vc-update)       ;; C-x v +
     (define-key map "l" 'vc-print-log)    ;; C-x v l


reply via email to

[Prev in Thread] Current Thread [Next in Thread]