* ansi/vt100 cursor issue
@ 2004-05-18 20:25 Barnaby Falls
2004-05-19 6:49 ` Eli Zaretskii
0 siblings, 1 reply; 7+ messages in thread
From: Barnaby Falls @ 2004-05-18 20:25 UTC (permalink / raw)
I run emacs 21.2 on Linux and want to get the color syntax highlighting and
all that. When I run with TERM=vt100 I get a gray and bold highlighting and
the cursor appears where it should. However, if I run with TERM=ansi, I get
the cool color syntax highlighting but the cursor is all the way in the top
right corner of the window and some text is wrapped and starts at the end of
the previous line. This all just regular text emacs, no X. Any ideas on how
to correct this so I can get emacs working with TERM=ansi? Thanks all.
Barnaby. . .
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: ansi/vt100 cursor issue
2004-05-18 20:25 Barnaby Falls
@ 2004-05-19 6:49 ` Eli Zaretskii
0 siblings, 0 replies; 7+ messages in thread
From: Eli Zaretskii @ 2004-05-19 6:49 UTC (permalink / raw)
> From: "Barnaby Falls" <barnabyf@hotmail.com>
> Date: Tue, 18 May 2004 13:25:32 -0700
>
> I run emacs 21.2 on Linux and want to get the color syntax highlighting and
> all that. When I run with TERM=vt100 I get a gray and bold highlighting and
> the cursor appears where it should.
That's because vt100 doesn't support colors.
> However, if I run with TERM=ansi, I get
> the cool color syntax highlighting but the cursor is all the way in the top
> right corner of the window and some text is wrapped and starts at the end of
> the previous line.
Sounds like "ansi" does not accurately describe your terminal: the
cursor motion commands are incorrect.
> This all just regular text emacs, no X. Any ideas on how
> to correct this so I can get emacs working with TERM=ansi?
What terminal do you _actually_ use? You need to point TERM to the
name of that terminal, not some more-or-less arbitrary name like
"ansi".
AFAIK, GNU/Linux systems have TERM set to the right string
automatically, so you shouldn't need to change that yourself. What is
the value of TERM when you log in with an empty .login and shell
startup files?
^ permalink raw reply [flat|nested] 7+ messages in thread
* RE: ansi/vt100 cursor issue
@ 2004-05-19 7:51 Barnaby Falls
2004-05-19 14:26 ` Eli Zaretskii
0 siblings, 1 reply; 7+ messages in thread
From: Barnaby Falls @ 2004-05-19 7:51 UTC (permalink / raw)
>Date: 19 May 2004 08:49:41 +0200
>From: Eli Zaretskii <eliz@gnu.org>
>Subject: Re: ansi/vt100 cursor issue
>To: help-gnu-emacs@gnu.org
>Message-ID: <uk6z829oa.fsf@gnu.org>
>
> > From: "Barnaby Falls" <barnabyf@hotmail.com>
> > Date: Tue, 18 May 2004 13:25:32 -0700
> >
> > I run emacs 21.2 on Linux and want to get the color syntax highlighting
>and
> > all that. When I run with TERM=vt100 I get a gray and bold highlighting
>and
> > the cursor appears where it should.
>
>That's because vt100 doesn't support colors.
>
> > However, if I run with TERM=ansi, I get
> > the cool color syntax highlighting but the cursor is all the way in the
>top
> > right corner of the window and some text is wrapped and starts at the
>end of
> > the previous line.
>
>Sounds like "ansi" does not accurately describe your terminal: the
>cursor motion commands are incorrect.
>
> > This all just regular text emacs, no X. Any ideas on how
> > to correct this so I can get emacs working with TERM=ansi?
>
>What terminal do you _actually_ use? You need to point TERM to the
>name of that terminal, not some more-or-less arbitrary name like
>"ansi".
I use the SSH Secure Shell Client (ssh.com). It allows you to set the
terminal answerback type, I have it set to `ansi'. But I just removed that
setting and logged on again and got the following:
$ echo $TERM
vt100
So I guess I'm trying to get colors in a terminal application (SSH) that
cannot handle it. Seeing this, I now tried this from a regular XP command
prompt and ran ssh to connect to the computer and got the following:
$ echo $TERM
cygwin
The colors show up nicely and I think I see what you mean by using some
arbitrary name for the TERM setting. So it looks like the SSH shell client I
am using doesn't support ansi. Thanks alot for clearing that up.
Barnaby. . .
>AFAIK, GNU/Linux systems have TERM set to the right string
>automatically, so you shouldn't need to change that yourself. What is
>the value of TERM when you log in with an empty .login and shell
>startup files?
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: ansi/vt100 cursor issue
[not found] <mailman.6207.1084954067.1061.help-gnu-emacs@gnu.org>
@ 2004-05-19 12:00 ` Miles Bader
2004-05-19 15:59 ` Stefan Monnier
1 sibling, 0 replies; 7+ messages in thread
From: Miles Bader @ 2004-05-19 12:00 UTC (permalink / raw)
"Barnaby Falls" <barnabyf@hotmail.com> writes:
> The colors show up nicely and I think I see what you mean by using some
> arbitrary name for the TERM setting. So it looks like the SSH shell
> client I am using doesn't support ansi. Thanks alot for clearing that
> up.
However, since you _did_ get colors when you tried it, it clearly
supports more than just vanilla vt100 attributes. So perhaps there are
other TERM types that might actually do what you want; you might try,
for instance, "xterm", or "linux", both of which are vaguely like a
vt100 but support color.
[Of course maybe the docs for you program actually say what the true
terminal type should be!]
-miles
--
Somebody has to do something, and it's just incredibly pathetic that it
has to be us. -- Jerry Garcia
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: ansi/vt100 cursor issue
2004-05-19 7:51 Barnaby Falls
@ 2004-05-19 14:26 ` Eli Zaretskii
0 siblings, 0 replies; 7+ messages in thread
From: Eli Zaretskii @ 2004-05-19 14:26 UTC (permalink / raw)
> From: "Barnaby Falls" <barnabyf@hotmail.com>
> Date: Wed, 19 May 2004 00:51:25 -0700
>
> I use the SSH Secure Shell Client (ssh.com). It allows you to set the
> terminal answerback type, I have it set to `ansi'. But I just removed that
> setting and logged on again and got the following:
> $ echo $TERM
> vt100
>
> So I guess I'm trying to get colors in a terminal application (SSH) that
> cannot handle it. Seeing this, I now tried this from a regular XP command
> prompt and ran ssh to connect to the computer and got the following:
> $ echo $TERM
> cygwin
If this is a Cygwin port of SSH, then perhaps someone on the Cygwin
mailing list could help you figure out what value of TERM should you
use. That is, if the docs of that SSH port doesn't have this info.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: ansi/vt100 cursor issue
[not found] <mailman.6207.1084954067.1061.help-gnu-emacs@gnu.org>
2004-05-19 12:00 ` ansi/vt100 cursor issue Miles Bader
@ 2004-05-19 15:59 ` Stefan Monnier
2004-05-19 19:46 ` Eli Zaretskii
1 sibling, 1 reply; 7+ messages in thread
From: Stefan Monnier @ 2004-05-19 15:59 UTC (permalink / raw)
> I use the SSH Secure Shell Client (ssh.com). It allows you to set the
I recommend `putty', BTW.
I haven't used either of them that much, but putty "just worked" whereas
ssh.com's thing was more trouble and even after some "extensive"
customization it never worked nearly as well:
PuTTY supports colors, mouse (via xterm-mouse-mode), and many more
modifier+key combinations.
And best of all, it's Free Software.
Stefan
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: ansi/vt100 cursor issue
2004-05-19 15:59 ` Stefan Monnier
@ 2004-05-19 19:46 ` Eli Zaretskii
0 siblings, 0 replies; 7+ messages in thread
From: Eli Zaretskii @ 2004-05-19 19:46 UTC (permalink / raw)
> Newsgroups: gnu.emacs.help
> From: Stefan Monnier <monnier@iro.umontreal.ca>
> Date: Wed, 19 May 2004 15:59:11 GMT
>
> > I use the SSH Secure Shell Client (ssh.com). It allows you to set the
>
> I recommend `putty', BTW.
Seconded.
> I haven't used either of them that much, but putty "just worked" whereas
> ssh.com's thing was more trouble and even after some "extensive"
> customization it never worked nearly as well:
> PuTTY supports colors, mouse (via xterm-mouse-mode), and many more
> modifier+key combinations.
I do use PuTTY extensively, and it has yet to fail me.
On top of all the advantages mentioned by Stefan, it's a native
Windows application, so there are no ``usual'' Cygwin-related issues,
like the cygdrive thingy and the need to depend on large DLLs.
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2004-05-19 19:46 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <mailman.6207.1084954067.1061.help-gnu-emacs@gnu.org>
2004-05-19 12:00 ` ansi/vt100 cursor issue Miles Bader
2004-05-19 15:59 ` Stefan Monnier
2004-05-19 19:46 ` Eli Zaretskii
2004-05-19 7:51 Barnaby Falls
2004-05-19 14:26 ` Eli Zaretskii
-- strict thread matches above, loose matches on Subject: below --
2004-05-18 20:25 Barnaby Falls
2004-05-19 6:49 ` Eli Zaretskii
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).