Mercurial > emacs
changeset 64727:5f8a240b7621
(compilation-mode-map): Bind TAB to `compilation-next-error'
and [backtab] to `compilation-previous-error'.
author | Juri Linkov <juri@jurta.org> |
---|---|
date | Thu, 04 Aug 2005 01:36:10 +0000 |
parents | 5036f2cf5dc0 |
children | c1b77e79c51a |
files | lisp/progmodes/compile.el |
diffstat | 1 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/progmodes/compile.el Thu Aug 04 01:11:17 2005 +0000 +++ b/lisp/progmodes/compile.el Thu Aug 04 01:36:10 2005 +0000 @@ -1158,6 +1158,8 @@ (define-key map "\M-p" 'compilation-previous-error) (define-key map "\M-{" 'compilation-previous-file) (define-key map "\M-}" 'compilation-next-file) + (define-key map "\t" 'compilation-next-error) + (define-key map [backtab] 'compilation-previous-error) (define-key map " " 'scroll-up) (define-key map "\^?" 'scroll-down)