From: Stefan Monnier <monnier@iro.umontreal.ca>
Subject: Re: Translating keys
Date: Sun, 16 Oct 2005 23:03:01 -0400 [thread overview]
Message-ID: <87slv0j1iy.fsf-monnier+gnu.emacs.help@gnu.org> (raw)
In-Reply-To: diubc4$t91$1@domitilla.aioe.org
> (local-set-key "ò" (lambda () (interactive) (insert "{")))
> but it doesn't work.
> I think I should know the code generated by the key. Is there a way?
There are many different ò. And the one sent by your keyboard's key is not
always the same depending on the version of Emacs, and the one read from
your .emacs is not always the same either depending on your locale, your
Emacs settings and maybe a -*- coding -*- cookie in the file.
Try M-: (read-event) RET and then hit your ò key. It'll return the code
Elisp receives in response to this key (e.g. 2290). You can then bind it
with (local-set-key [2290] "{").
> Anyway, the "insert" function is not useful, because the generated character
> does not behave like the original one (I've electric C enabled and the
> { generated by "insert" is not recognized as electric; the original { is).
Try (local-set-key "ò" "{"). The "{" part is a keyboard macro which tells
Emacs to behave as if you had typed the key sequence "{" (i.e. composed of
a single key).
Stefan
prev parent reply other threads:[~2005-10-17 3:03 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-10-16 19:58 Translating keys Elena Garrulo
2005-10-16 20:18 ` Peter Dyballa
[not found] ` <mailman.11540.1129493899.20277.help-gnu-emacs@gnu.org>
2005-10-16 22:07 ` Elena Garrulo
2005-10-17 0:07 ` Peter Dyballa
2005-10-17 2:10 ` Pascal Bourguignon
2005-10-17 10:48 ` Mounir AITTAHAR
2005-10-17 13:27 ` Pascal Bourguignon
2005-10-17 15:15 ` Mounir AITTAHAR
2005-10-18 14:52 ` Mounir AITTAHAR
2005-10-18 16:50 ` Pascal Bourguignon
2005-10-19 8:29 ` Mounir AITTAHAR
2005-10-19 23:09 ` Stefan Monnier
2005-10-20 8:22 ` Mounir AITTAHAR
2005-10-20 9:09 ` Mounir AITTAHAR
2005-10-20 8:38 ` Mounir AITTAHAR
2005-10-21 8:37 ` Translating keys [solved] Mounir AITTAHAR
2005-10-17 3:03 ` Stefan Monnier [this message]
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=87slv0j1iy.fsf-monnier+gnu.emacs.help@gnu.org \
--to=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).