diff options
| author | Xue Fuqiao | 2013-07-27 08:09:51 +0800 |
|---|---|---|
| committer | Xue Fuqiao | 2013-07-27 08:09:51 +0800 |
| commit | e4c467f919b37ccb56f44a49571565741d49a0db (patch) | |
| tree | 268e5d95ce6a0a66e6ab2115ff3a674603b072eb /lisp | |
| parent | 13afd560a137730c2fd22b9ee664867f9d4e17d6 (diff) | |
| download | emacs-e4c467f919b37ccb56f44a49571565741d49a0db.tar.gz emacs-e4c467f919b37ccb56f44a49571565741d49a0db.zip | |
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.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/vc/vc-dir.el | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 65bbc8a305b..ef409aa3005 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-07-26 Xue Fuqiao <xfq.free@gmail.com> | ||
| 2 | |||
| 3 | * vc/vc-dir.el (vc-dir-mode-map): Add binding for vc-root-diff. | ||
| 4 | |||
| 1 | 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2013-07-26 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 6 | ||
| 3 | * emacs-lisp/nadvice.el (advice--called-interactively-skip): Use the new | 7 | * emacs-lisp/nadvice.el (advice--called-interactively-skip): Use the new |
diff --git a/lisp/vc/vc-dir.el b/lisp/vc/vc-dir.el index 325e66ea530..7df2bd6687d 100644 --- a/lisp/vc/vc-dir.el +++ b/lisp/vc/vc-dir.el | |||
| @@ -237,6 +237,7 @@ See `run-hooks'." | |||
| 237 | ;; VC commands | 237 | ;; VC commands |
| 238 | (define-key map "v" 'vc-next-action) ;; C-x v v | 238 | (define-key map "v" 'vc-next-action) ;; C-x v v |
| 239 | (define-key map "=" 'vc-diff) ;; C-x v = | 239 | (define-key map "=" 'vc-diff) ;; C-x v = |
| 240 | (define-key map "D" 'vc-root-diff) ;; C-x v D | ||
| 240 | (define-key map "i" 'vc-register) ;; C-x v i | 241 | (define-key map "i" 'vc-register) ;; C-x v i |
| 241 | (define-key map "+" 'vc-update) ;; C-x v + | 242 | (define-key map "+" 'vc-update) ;; C-x v + |
| 242 | (define-key map "l" 'vc-print-log) ;; C-x v l | 243 | (define-key map "l" 'vc-print-log) ;; C-x v l |