From: "B. T. Raven" <nihil@nihilo.net>
To: help-gnu-emacs@gnu.org
Subject: Re: custom keyboard layout? howto redefine keys?
Date: Fri, 10 Apr 2009 04:25:22 -0500 [thread overview]
Message-ID: <95ednf9KOIEejULUnZ2dnUVZ_r-dnZ2d@sysmatrix.net> (raw)
In-Reply-To: <84995d58-0858-4762-b317-8935fdfafcf9@f19g2000yqo.googlegroups.com>
nic.d.m.1@googlemail.com wrote:
> Is there a way to customize the keyboard layout within emacs? For
> example if I want "the key on my keyboard labeled 'a' behave like
> that labeled 'b' I think the code for my .emacs file should be
> something like this:
>
> (global-set-key ["Key labeled 'a' on my keyboard"] 'ucs-insert 0062)
>
> I am new to emacs and don't know what the correct syntax for "Key
> labeled 'a' on my keyboard' could be.
>
> So I tried to make f5 instead behave like b:
>
> (global-set-key [f5] 'ucs-insert 0062)
>
> Then I get an error message: "Wrong type argument: commandp, (ucs-
> insert 62)" if I restart emacs and press f5.
>
> (For example (global-set-key [f1] 'ucs-insert) works, but then it
> asks which UTF-8 character I want to insert, that's not what I want)
>
> Any ideas?
(global-set-key [f5] (lambda () (interactive) (ucs-insert "62")))
ucs-insert seems to want a string;
for your original question you could also do this:
(global-set-key "a" "b")
but you will immediately regret it, since now you won't be able to type
the letter a, for example to assign it to another key. At least I
couldn't figure out how to undo the damage and I had to re-start Emacs.
>
> thanks
> nic
next prev parent reply other threads:[~2009-04-10 9:25 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-04-09 23:40 custom keyboard layout? howto redefine keys? nic.d.m.1
2009-04-10 9:25 ` B. T. Raven [this message]
2009-04-10 10:18 ` nic.d.m.1
2009-04-10 15:56 ` rustom
2009-04-10 16:22 ` B. T. Raven
2009-04-10 16:39 ` harven
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=95ednf9KOIEejULUnZ2dnUVZ_r-dnZ2d@sysmatrix.net \
--to=nihil@nihilo.net \
--cc=help-gnu-emacs@gnu.org \
/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).