diff options
| author | Stefan Monnier | 2006-07-18 14:39:57 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2006-07-18 14:39:57 +0000 |
| commit | b0c2455471bb46cb6152ea28cd337e7ead8b0029 (patch) | |
| tree | ec45d80958ac591935856bafc003b617cbd60ff6 | |
| parent | ddb1546b12e13e451943c08435d6d067e92d828b (diff) | |
| download | emacs-b0c2455471bb46cb6152ea28cd337e7ead8b0029.tar.gz emacs-b0c2455471bb46cb6152ea28cd337e7ead8b0029.zip | |
(minibuffer-local-map): Rebind TAB so it inserts a \t.
| -rw-r--r-- | lisp/bindings.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/bindings.el b/lisp/bindings.el index 722de30280d..5420badde90 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el | |||
| @@ -674,7 +674,11 @@ language you are using." | |||
| 674 | (define-key map [prior] 'previous-history-element) | 674 | (define-key map [prior] 'previous-history-element) |
| 675 | (define-key map [up] 'previous-history-element) | 675 | (define-key map [up] 'previous-history-element) |
| 676 | (define-key map "\es" 'next-matching-history-element) | 676 | (define-key map "\es" 'next-matching-history-element) |
| 677 | (define-key map "\er" 'previous-matching-history-element)) | 677 | (define-key map "\er" 'previous-matching-history-element) |
| 678 | ;; Override the global binding (which calls indent-relative via | ||
| 679 | ;; indent-for-tab-command). The alignment that indent-relative tries to | ||
| 680 | ;; do doesn't make much sense here since the prompt messes it up. | ||
| 681 | (define-key map "\t" 'self-insert-command)) | ||
| 678 | 682 | ||
| 679 | (define-key global-map "\C-u" 'universal-argument) | 683 | (define-key global-map "\C-u" 'universal-argument) |
| 680 | (let ((i ?0)) | 684 | (let ((i ?0)) |