mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 04:10:54 -08:00
(minibuffer-local-map): Rebind TAB so it inserts a \t.
This commit is contained in:
parent
ddb1546b12
commit
b0c2455471
1 changed files with 5 additions and 1 deletions
|
|
@ -674,7 +674,11 @@ language you are using."
|
|||
(define-key map [prior] 'previous-history-element)
|
||||
(define-key map [up] 'previous-history-element)
|
||||
(define-key map "\es" 'next-matching-history-element)
|
||||
(define-key map "\er" 'previous-matching-history-element))
|
||||
(define-key map "\er" 'previous-matching-history-element)
|
||||
;; Override the global binding (which calls indent-relative via
|
||||
;; indent-for-tab-command). The alignment that indent-relative tries to
|
||||
;; do doesn't make much sense here since the prompt messes it up.
|
||||
(define-key map "\t" 'self-insert-command))
|
||||
|
||||
(define-key global-map "\C-u" 'universal-argument)
|
||||
(let ((i ?0))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue