diff options
author | mveety <mveety@gmail.com> | 2013-08-28 23:01:23 -0400 |
---|---|---|
committer | mveety <mveety@gmail.com> | 2013-08-28 23:01:23 -0400 |
commit | ba7c22f781dafd30d0b97179c941476639022285 (patch) | |
tree | 50dd97a16dc713a961dc21acb735cdd67bea5573 /sys/src/cmd/acme/dat.h | |
parent | 12ecb3e568312f881bfcb22bef71d5a00cfab196 (diff) |
Added the p9p acme patch the allows multiline tags (thanks rsc and lf94).
Diffstat (limited to 'sys/src/cmd/acme/dat.h')
-rw-r--r-- | sys/src/cmd/acme/dat.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sys/src/cmd/acme/dat.h b/sys/src/cmd/acme/dat.h index 4d4e7cfc7..2c4d40d79 100644 --- a/sys/src/cmd/acme/dat.h +++ b/sys/src/cmd/acme/dat.h @@ -191,6 +191,7 @@ struct Text int ncachealloc; Rune *cache; int nofill; + int needundo; }; uint textbacknl(Text*, uint, uint); @@ -235,6 +236,8 @@ struct Window uchar filemenu; uchar dirty; uchar autoindent; + uchar showdel; + uint noredraw; int id; Range addr; Range limit; @@ -263,6 +266,10 @@ struct Window int utflastqid; int utflastboff; int utflastq; + int tagsafe; /* taglines is correct */ + int tagexpand; + int taglines; + Rectangle tagtop; }; void wininit(Window*, Window*, Rectangle); |