Lines Matching +full:n +full:-

13 -
43 then enter a decimal number from 0-255 via the numerical keypad, then
50 pressing the scroll-lock key.
58 .Bd -literal
62 -- E7 Save cursor position sc
64 -- E8 Restore saved cursor position rc
66 -- Ec Reset rs
68 -- EM move cursor up 1 line, --
71 CUU E[nA move cursor up n lines up/UP (ku)
73 CUD E[nB move cursor down n lines do/DO (kd)
75 CUF E[nC move cursor right n characters nd/RI (kr)
77 CUB E[nD move cursor left n characters --/LE (kl)
79 HPA E[n` move cursor to character position n ch
81 HPR E[na move cursor right n characters --
83 VPA E[nd move cursor to line n cv
85 VPR E[ne move cursor down n lines --
87 CPL E[nF move cursor to start of line, -- (@7)
88 n lines up
91 n lines down
95 HVP E[y;xf Move cursor to x, y --
97 CBT E[nZ Move cursor back n tab stops bt (kB)
99 IL E[nL Insert n blank lines al/AL
101 ICH E[n@ Insert n blank characters ic/IC
103 DL E[nM Delete n lines dl/DL
105 DCH E[nP Delete n characters dc/DC
108 n=0 from cursor to end of display,
109 n=1 from begin of display to cursor,
110 n=2 entire display.
113 n=0 from cursor to end of line,
114 n=1 from begin of line to cursor,
115 n=2 entire line.
117 ECH E[nX Erase n characters ec
119 SU E[nS Scroll display n lines up (forward) sf/SF
121 SD E[nT Scroll display n lines down (reverse) sr/SR
124 SGR E[nm Set character attributes: --
125 n= 0 normal attribute (all off)
126 n= 1 bold (highlight)
127 n= 4 underscore (if supported by HW)
128 n= 5 blink (if supported by HW)
129 n= 7 reverse
130 n= 22 remove bold
131 n= 24 remove underscore
132 n= 25 remove blink
133 n= 27 remove reverse
134 n= 3X set ANSI foreground color
136 n= 4X set ANSI background color
145 -- E[s Save cursor position sc
147 -- E[u Restore saved cursor position rc
149 -- E[x Reset normal colors and attributes --
152 -- E[nz Switch to virtual console n --
154 -- E[1;nx Set normal ANSI background color --
155 to n (see table)
157 -- E[2;nx Set normal ANSI foreground color --
158 to n (see table)
160 -- E[3;nx Set normal video attribute directly --
161 to n (n from 0 to 255)
163 -- E[5;nx Set normal ANSI reverse background --
164 color to n (see table)
166 -- E[6;nx Set normal ANSI reverse foreground --
167 color to n (see table)
169 n= 0 black n= 8 dark grey
170 n= 1 red n= 9 light red
171 n= 2 green n=10 light green
172 n= 3 brown n=11 yellow
173 n= 4 blue n=12 light blue
174 n= 5 magenta n=13 light magenta
175 n= 6 cyan n=14 light cyan
176 n= 7 light grey n=15 white
178 -- E[7;nx Set normal reverse video attribute --
179 directly to n (n from 0 to 255)
181 -- E[=p;dB Set bell pitch (p) and duration (d), --
185 -- E[=tC Set global cursor type (see table) --
187 t=0 normal non-blinking
189 t=2 custom non-blinking
196 -- E[=s;eC Set custom cursor shape, where --
200 -- E[=s;e;dC --
206 -- E[=tS Set local cursor type (see table) --
212 -- E[=nA Set the border color to n --
215 -- E[=nF Set normal foreground color to n --
218 -- E[=nG Set normal background color to n --
221 -- E[=nH Set normal reverse foreground color --
222 to n (see table)
224 -- E[=nI Set normal reverse background color --
225 to n (see table)
227 n= 0 black n= 8 dark grey
228 n= 1 blue n= 9 light blue
229 n= 2 green n=10 light green
230 n= 3 cyan n=11 light cyan
231 n= 4 red n=12 light red
232 n= 5 magenta n=13 light magenta
233 n= 6 brown n=14 yellow
234 n= 7 light grey n=15 white