diff options
| author | Dan Nicolaescu <dann@ics.uci.edu> | 2007-09-22 23:27:53 +0000 |
|---|---|---|
| committer | Dan Nicolaescu <dann@ics.uci.edu> | 2007-09-22 23:27:53 +0000 |
| commit | 25edda535bc46a29e9ff0622900ffa53670efd99 (patch) | |
| tree | af22df4d35818ad6eaf1b75bea1546751bfdd951 /lisp/diff-mode.el | |
| parent | 950c2be809857f1bf644c47e26ce602a0224aa28 (diff) | |
| download | emacs-25edda535bc46a29e9ff0622900ffa53670efd99.tar.gz | |
* pcvs-defs.el (cvs-mode-map): Bind TAB and backtab.
* log-view.el (log-view-mode-map): Likewise.
* diff-mode.el (diff-mode-shared-map): Likewise.
Diffstat (limited to 'lisp/diff-mode.el')
| -rw-r--r-- | lisp/diff-mode.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/diff-mode.el b/lisp/diff-mode.el index ab12c6133f2..a79fb577453 100644 --- a/lisp/diff-mode.el +++ b/lisp/diff-mode.el @@ -112,6 +112,8 @@ when editing big diffs)." ("N" . diff-file-next) ("p" . diff-hunk-prev) ("P" . diff-file-prev) + ("\t" . diff-hunk-next) + ([backtab] . diff-hunk-prev) ("k" . diff-hunk-kill) ("K" . diff-file-kill) ;; From compilation-minor-mode. |
