From: Grant Rettke <gcr@wisdomandwonder.com>
To: Stefan Monnier <monnier@iro.umontreal.ca>
Cc: Emacs Help <help-gnu-emacs@gnu.org>
Subject: Re: Reporting when keymapping stomped... best approach
Date: Tue, 10 Jun 2014 18:56:41 -0500 [thread overview]
Message-ID: <CAAjq1md3V5Sv6PKSvQ+hbWTR-3WNMk_aEOuFF8q8tuz2NRcoAg@mail.gmail.com> (raw)
In-Reply-To: <jwvppigh8ps.fsf-monnier+gmane.emacs.help@gnu.org>
Thanks so much.
I'll check also if there is something good for a "local-set-key" check.
Grant Rettke | AAAS, ACM, ASA, FSF, IEEE, SIAM, Sigma Xi
gcr@wisdomandwonder.com | http://www.wisdomandwonder.com/
“Wisdom begins in wonder.” --Socrates
((λ (x) (x x)) (λ (x) (x x)))
“Life has become immeasurably better since I have been forced to stop
taking it seriously.” --Thompson
On Tue, Jun 10, 2014 at 2:24 PM, Stefan Monnier
<monnier@iro.umontreal.ca> wrote:
>> (defadvice global-set-key (before check-keymapping activate)
>> (let ((key (ad-get-arg 0))
>> (command (ad-get-arg 1)))
>> (when command
>> (warn (concat "Just stomped on a global keymapping bound to: "
>> command)))))
>
> This doesn't check whether the key was already bound.
> You'll probably prefer something like
>
> (defadvice global-set-key (before check-keymapping activate)
> (let* ((key (ad-get-arg 0))
> (command (ad-get-arg 1))
> (old (lookup-key global-map key)))
> (when old
> (message "Replacing %S with %S in global-map"
> old command))))
>
> and you'll probably also want to advise `define-key' similarly.
>
>
> Stefan
>
>
next prev parent reply other threads:[~2014-06-10 23:56 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-10 19:15 Reporting when keymapping stomped... best approach Grant Rettke
2014-06-10 19:24 ` Stefan Monnier
2014-06-10 23:56 ` Grant Rettke [this message]
2014-06-12 6:50 ` Kevin Rodgers
2014-06-12 17:18 ` Grant Rettke
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=CAAjq1md3V5Sv6PKSvQ+hbWTR-3WNMk_aEOuFF8q8tuz2NRcoAg@mail.gmail.com \
--to=gcr@wisdomandwonder.com \
--cc=help-gnu-emacs@gnu.org \
--cc=monnier@iro.umontreal.ca \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).