unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Re: master 8be576286d: Add instructions on disabling SPC completion to Minibuffer Edit
       [not found] ` <20220220152327.D1C66C00894@vcs2.savannah.gnu.org>
@ 2022-02-20 15:45   ` Stefan Monnier
  2022-02-20 15:57     ` Lars Ingebrigtsen
  0 siblings, 1 reply; 2+ messages in thread
From: Stefan Monnier @ 2022-02-20 15:45 UTC (permalink / raw)
  To: emacs-devel; +Cc: Lars Ingebrigtsen

> +@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)

?


-- Stefan




^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: master 8be576286d: Add instructions on disabling SPC completion to Minibuffer Edit
  2022-02-20 15:45   ` master 8be576286d: Add instructions on disabling SPC completion to Minibuffer Edit Stefan Monnier
@ 2022-02-20 15:57     ` Lars Ingebrigtsen
  0 siblings, 0 replies; 2+ messages in thread
From: Lars Ingebrigtsen @ 2022-02-20 15:57 UTC (permalink / raw)
  To: Stefan Monnier; +Cc: emacs-devel

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



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-02-20 15:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <164537060757.19734.2481302876078662350@vcs2.savannah.gnu.org>
     [not found] ` <20220220152327.D1C66C00894@vcs2.savannah.gnu.org>
2022-02-20 15:45   ` master 8be576286d: Add instructions on disabling SPC completion to Minibuffer Edit Stefan Monnier
2022-02-20 15:57     ` Lars Ingebrigtsen

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).