1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-06 20:49:33 +00:00

Bind = to diff command in vc-annotate mode (Bug#8671)

* lisp/vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
vc-annotate-show-diff-revision-at-line.
This commit is contained in:
Chong Yidong 2011-05-15 09:47:56 -04:00
parent cf6f3ed8ed
commit c8e837514f
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2011-05-15 Chong Yidong <cyd@stupidchicken.com>
* vc/vc-annotate.el (vc-annotate-mode-map): Bind = to
vc-annotate-show-diff-revision-at-line (Bug#8671).
2011-05-14 Glenn Morris <rgm@gnu.org>
* vc/add-log.el (add-change-log-entry): Don't start adding a new entry

View File

@ -120,6 +120,7 @@ List of factors, used to expand/compress the time scale. See `vc-annotate'."
(let ((m (make-sparse-keymap)))
(define-key m "a" 'vc-annotate-revision-previous-to-line)
(define-key m "d" 'vc-annotate-show-diff-revision-at-line)
(define-key m "=" 'vc-annotate-show-diff-revision-at-line)
(define-key m "D" 'vc-annotate-show-changeset-diff-revision-at-line)
(define-key m "f" 'vc-annotate-find-revision-at-line)
(define-key m "j" 'vc-annotate-revision-at-line)