Re: Minos2 terminal bug: rapidly repeated clear-and-redraw cau ses missed drawing
"Ethan Gardener" <[email protected]> Tue, 22 Sep 2020 16:22:56 +0100
| Newsgroups | gmane.comp.lang.forth.gforth |
|---|---|
| Message-ID | <[email protected]> |
On Tue, Sep 22, 2020, at 2:39 PM, Bernd Paysan wrote: > > The highlight is probably done wrong. It should use ATTR!, not direct escape > sequences. Ah yes, I forgot I changed that. Under Minos2, I use bg! and fg! with a color format conversion word. Prior to loading blocked: : 1bgr2minos2 invert 7 and 8 or ; In blocked: : rvson 3 1bgr2minos2 bg! 15 fg! ; : rvsoff 0 1bgr2minos2 bg! ; (I also forgot to overload bg! & fg! to include 1bgr2minos2.)