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

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

Re: Emacs on WinXP and Italian keyboard


From: Torsten Mueller
Subject: Re: Emacs on WinXP and Italian keyboard
Date: Fri, 27 Mar 2009 07:16:44 +0100
User-agent: Gnus/5.11 (Gnus v5.11) Emacs/22.2 (windows-nt)

Andrea Taverna <a.tavsNOSPAM@libero.it.invalid> wrote:

> How can I fix the problem?

I oftenly use swiss keyboards missing a key for the german 'ß'. I use
a function key for this. I my .emacs I have the following line:

(global-set-key [f3] 'insert-sz)

and insert-sz is as follows:

(defun insert-sz () "Inserts German-sz character at the current position" 
(interactive)
  (insert-char ?ß 1)
)

This works very well. I even press F3 on german keybords having the
ß-key.

T.M.


reply via email to

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