Lines Matching +full:display +full:- +full:related
1 \ Screen manipulation related words.
3 marker task-screen.4th
5 : escc ( -- ) \ emit Esc-[
9 : ho ( -- ) \ Home cursor
10 escc 72 emit \ Esc-[H
13 : cld ( -- ) \ Clear from current position to end of display
14 escc 74 emit \ Esc-[J
17 : clear ( -- ) \ clear screen
21 : at-xy ( x y -- ) \ move cursor to x rows, y cols (1-based coords)
22 escc .# 59 emit .# 72 emit \ Esc-[%d;%dH
25 : fg ( x -- ) \ Set foreground color
26 escc 3 .# .# 109 emit \ Esc-[3%dm
29 : bg ( x -- ) \ Set background color
30 escc 4 .# .# 109 emit \ Esc-[4%dm
33 : me ( -- ) \ Mode end (clear attributes)