From 2d914448d5347cf3ad709d538b949f34f529407a Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 15 Nov 2007 12:01:04 +0000 Subject: [PATCH] (minibuffer-local-map): Bind C-tab here; moved from filecache.el. --- lisp/bindings.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)) -- 2.39.5