1 \ Screen manipulation related words.
6 : escc ( -- ) \ emit Esc-[
10 : ho ( -- ) \ Home cursor
14 : cld ( -- ) \ Clear from current position to end of display
18 : clear ( -- ) \ clear screen
22 : at-xy ( x y -- ) \ move cursor to x rows, y cols (1-based coords)
23 escc .# 59 emit .# 72 emit \ Esc-[%d;%dH
26 : fg ( x -- ) \ Set foreground color
27 escc 3 .# .# 109 emit \ Esc-[3%dm
30 : bg ( x -- ) \ Set background color
31 escc 4 .# .# 109 emit \ Esc-[4%dm
34 : me ( -- ) \ Mode end (clear attributes)