emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: master 8be576286d: Add instructions on disabling SPC completion to M


From: Lars Ingebrigtsen
Subject: Re: master 8be576286d: Add instructions on disabling SPC completion to Minibuffer Edit
Date: Sun, 20 Feb 2022 16:57:22 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux)

Stefan Monnier <monnier@iro.umontreal.ca> writes:

>> +@lisp
>> +(keymap-set minibuffer-local-completion-map "SPC" #'self-insert-command)
>> +(keymap-set minibuffer-local-completion-map "?" #'self-insert-command)
>> +@end lisp
>
> Why not
>
>     (keymap-set minibuffer-local-completion-map "SPC" nil)
>     (keymap-set minibuffer-local-completion-map "?" nil)
>
> ?

Why not, indeed.  Or

(keymap-unset minibuffer-local-completion-map "SPC")
(keymap-unset minibuffer-local-completion-map "?")

Now adjusted.

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no



reply via email to

[Prev in Thread] Current Thread [Next in Thread]