From: Richard M. Stallman Date: Thu, 15 Nov 2007 12:01:04 +0000 (+0000) Subject: (minibuffer-local-map): Bind C-tab here; moved from filecache.el. X-Git-Tag: emacs-pretest-22.1.90~378 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2d914448d5347cf3ad709d538b949f34f529407a;p=emacs.git (minibuffer-local-map): Bind C-tab here; moved from filecache.el. --- diff --git a/lisp/bindings.el b/lisp/bindings.el index 3c7237a52fa..27d8cc62606 100644 --- a/lisp/bindings.el +++ b/lisp/bindings.el @@ -680,7 +680,8 @@ language you are using." ;; 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 map "\t" 'self-insert-command) + (define-key minibuffer-local-map [C-tab] 'file-cache-minibuffer-complete)) (define-key global-map "\C-u" 'universal-argument) (let ((i ?0))