help-gnu-emacs
[Top][All Lists]
Advanced

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

Re: cannot disable paren matching


From: Stefan Monnier
Subject: Re: cannot disable paren matching
Date: Tue, 27 Dec 2016 18:14:49 -0500
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux)

> In Emacs 25 these are all bound to `self-insert-command', so I suspect
> that's the issue (and not show-paren-mode).

Indeed.  The issue is that the ps-mode-r-* commands just used `insert`
which does just what it says.  If they had used self-insert-command
internally (which is the function which pays attention to overwrite
mode), then it could have worked right.

These issues were part of the motivation to add post-self-insert-hook,
so that those commands can be replaced by `self-insert-command` without
any need to rebind the keys.


        Stefan




reply via email to

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