summaryrefslogtreecommitdiff
path: root/doc/emacs/custom.texi
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2021-08-20 17:00:10 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2021-08-20 17:00:10 +0200
commitb2b9f69b9db7fdedfa90764beced74a7831f50de (patch)
treea85eb8f18a1ed00186bea03ad71645232badd473 /doc/emacs/custom.texi
parentac2cecbd83428d04b98cc1ef48ec098978141295 (diff)
downloademacs-b2b9f69b9db7fdedfa90764beced74a7831f50de.tar.gz
emacs-b2b9f69b9db7fdedfa90764beced74a7831f50de.tar.bz2
emacs-b2b9f69b9db7fdedfa90764beced74a7831f50de.zip
Document how to get rid of completion on `SPC' and `?'
* doc/emacs/custom.texi (Minibuffer Maps): Mention how to get rid of completion on `SPC' and `?' (bug#16528).
Diffstat (limited to 'doc/emacs/custom.texi')
-rw-r--r--doc/emacs/custom.texi11
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/emacs/custom.texi b/doc/emacs/custom.texi
index 999234e6d33..9b906560498 100644
--- a/doc/emacs/custom.texi
+++ b/doc/emacs/custom.texi
@@ -1721,6 +1721,17 @@ previous ones, but they are specifically for file name completion.
They do not bind @key{SPC}.
@end itemize
+By default, @key{TAB}, @key{SPC} and @key{?} do completion in
+@code{minibuffer-local-completion-map}. If you commonly complete over
+collections that have elements that have space or question marks in
+them, it may be convenient to disable completion on those keys by
+putting this in your init file:
+
+@lisp
+(define-key minibuffer-local-completion-map " " 'self-insert-command)
+(define-key minibuffer-local-completion-map "?" 'self-insert-command)
+@end lisp
+
@node Rebinding
@subsection Changing Key Bindings Interactively
@cindex key rebinding, this session