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

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

Re: Emacs backspace and delete.


From: TheFlyingDutchman
Subject: Re: Emacs backspace and delete.
Date: Thu, 23 Oct 2008 15:53:27 -0700 (PDT)
User-agent: G2/1.0

>
> (global-set-key "\C-h"  'backward-delete-char-untabify)
>

It looks like the variable window-system will tell whether you are
running with -nw or not so the key assignment can be conditional:

(when (eq window-system nil)
   (global-set-key "\C-h"  'backward-delete-char-untabify)  )




reply via email to

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