unofficial mirror of guile-user@gnu.org 
 help / color / mirror / Atom feed
* Re: Backspace, delete and arrow keys not working in Guile
  2003-04-19 23:02 Backspace, delete and arrow keys not working in Guile Real Carbonneau
@ 2003-04-19 18:52 ` Egil Moeller
  2003-04-20  6:21 ` Dirk-Jan C. Binnema
  1 sibling, 0 replies; 4+ messages in thread
From: Egil Moeller @ 2003-04-19 18:52 UTC (permalink / raw)
  Cc: guile-user

I do not have a solution to your problem, but I think you should also
include your locale settings (your LANG and LC_* environment variables),
as this is probably at least a part of the problem. Also your terminal
(xtterm?) configuration might be of interrest, or more precisely, what
character sequences backspace and delete sends (^h, ^H, ^?). I do not say
that problems with this is the cause of your problem, just that such
information would probably help to eliminate some things from the list of
possible causes...

On Sat, 19 Apr 2003, Real Carbonneau wrote:

> Hi,
>
>
>
> I have installed guile 1.3.4 on RedHat 7.3 using the RPM and install from
> the Ximian RedCarpet.
>
>
>
> Everything works great, except that at the guile command line, when I press
> keys such as backspace, delete and the arrow keys I get the following
> strings displayed ("^H", "[[3~",etc..),  instead of the desired action.
>
>
>
> Is there anyway to resolve this?  I have searched the mailing list archive
> and the web without any result.
>
>
>
> Thank you in advance,
>
> Real
>
>

-- 
http://redhog.org
GPG Public key: http://redhog.org/PGP%20Public%20key.asc
Hi! I'm a .signature virus! Copy me into your ~/.signature to help me spread!



_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-user


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Backspace, delete and arrow keys not working in Guile
@ 2003-04-19 23:02 Real Carbonneau
  2003-04-19 18:52 ` Egil Moeller
  2003-04-20  6:21 ` Dirk-Jan C. Binnema
  0 siblings, 2 replies; 4+ messages in thread
From: Real Carbonneau @ 2003-04-19 23:02 UTC (permalink / raw)



[-- Attachment #1.1: Type: text/plain, Size: 471 bytes --]

Hi,

 

I have installed guile 1.3.4 on RedHat 7.3 using the RPM and install from
the Ximian RedCarpet.

 

Everything works great, except that at the guile command line, when I press
keys such as backspace, delete and the arrow keys I get the following
strings displayed ("^H", "[[3~",etc..),  instead of the desired action.

 

Is there anyway to resolve this?  I have searched the mailing list archive
and the web without any result.

 

Thank you in advance,

Real 


[-- Attachment #1.2: Type: text/html, Size: 2547 bytes --]

[-- Attachment #2: Type: text/plain, Size: 139 bytes --]

_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-user

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Backspace, delete and arrow keys not working in Guile
  2003-04-19 23:02 Backspace, delete and arrow keys not working in Guile Real Carbonneau
  2003-04-19 18:52 ` Egil Moeller
@ 2003-04-20  6:21 ` Dirk-Jan C. Binnema
  2003-04-20 17:40   ` Real Carbonneau
  1 sibling, 1 reply; 4+ messages in thread
From: Dirk-Jan C. Binnema @ 2003-04-20  6:21 UTC (permalink / raw)
  Cc: guile-user

On Sat, 19 Apr 2003, Real Carbonneau wrote:
 
> Everything works great, except that at the guile command line, when I press
> keys such as backspace, delete and the arrow keys I get the following
> strings displayed ("^H", "[[3~",etc..),  instead of the desired action.
> 
>  
> 
> Is there anyway to resolve this?  I have searched the mailing list archive
> and the web without any result.

Add this to your ~/.guile:
----------------------------------
(use-modules (ice-9 readline))
(activate-readline)
----------------------------------

Should do the trick.

--Dirk-Jan.


_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-user


^ permalink raw reply	[flat|nested] 4+ messages in thread

* RE: Backspace, delete and arrow keys not working in Guile
  2003-04-20  6:21 ` Dirk-Jan C. Binnema
@ 2003-04-20 17:40   ` Real Carbonneau
  0 siblings, 0 replies; 4+ messages in thread
From: Real Carbonneau @ 2003-04-20 17:40 UTC (permalink / raw)


Hi,

Thank you very much, it worked.

Real

-----Original Message-----
From: guile-user-bounces+carb=videotron.ca@gnu.org
[mailto:guile-user-bounces+carb=videotron.ca@gnu.org] On Behalf Of Dirk-Jan
C. Binnema
Sent: Sunday, April 20, 2003 2:22 AM
To: Real Carbonneau
Cc: guile-user@gnu.org
Subject: Re: Backspace, delete and arrow keys not working in Guile

On Sat, 19 Apr 2003, Real Carbonneau wrote:
 
> Everything works great, except that at the guile command line, when I
press
> keys such as backspace, delete and the arrow keys I get the following
> strings displayed ("^H", "[[3~",etc..),  instead of the desired action.
> 
>  
> 
> Is there anyway to resolve this?  I have searched the mailing list archive
> and the web without any result.

Add this to your ~/.guile:
----------------------------------
(use-modules (ice-9 readline))
(activate-readline)
----------------------------------

Should do the trick.

--Dirk-Jan.


_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-user




_______________________________________________
Guile-user mailing list
Guile-user@gnu.org
http://mail.gnu.org/mailman/listinfo/guile-user


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2003-04-20 17:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-04-19 23:02 Backspace, delete and arrow keys not working in Guile Real Carbonneau
2003-04-19 18:52 ` Egil Moeller
2003-04-20  6:21 ` Dirk-Jan C. Binnema
2003-04-20 17:40   ` Real Carbonneau

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).