1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-11-19 13:33:52 +01:00

Added the PROMPTSP option plus 3 new termcap defines

(TCSAVECURSOR, TCRESTRCURSOR, and TCBACKSPACE).
This commit is contained in:
Wayne Davison 2005-07-15 17:41:33 +00:00
parent 1522c05145
commit 9ba458948a

@ -1594,6 +1594,7 @@ enum {
PROMPTBANG,
PROMPTCR,
PROMPTPERCENT,
PROMPTSP,
PROMPTSUBST,
PUSHDIGNOREDUPS,
PUSHDMINUS,
@ -1716,7 +1717,10 @@ struct ttyinfo {
#define TCDOWNCURSOR 26
#define TCLEFTCURSOR 27
#define TCRIGHTCURSOR 28
#define TC_COUNT 29
#define TCSAVECURSOR 29
#define TCRESTRCURSOR 30
#define TCBACKSPACE 31
#define TC_COUNT 32
#define tccan(X) (tclen[X])