Re: curses
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: curses
- From: "Juris Kalnins" <juris@...>
- Date: 2009年9月08日 14:07:53 +0300
On 2009年9月08日 13:50:14 +0300, Reuben Thomas <rrt@sc3d.org> wrote:
I'm currently rewriting GNU Zile (a lightweight Emacs clone) in Lua,
so I need curses support.
You may consider doing it without curses. That library is worthy of it's
name.
There is big enough subset of ANSI escape sequences that is well
supported by all current terminals.
Terminal emulation bugs are often easy to work around without adding
specific cases to the code.
See http://vt100.net and http://www.xfree86.org/current/ctlseqs.html
for good reference.