Home | History | Annotate | Download | only in pexpect-2.4

Lines Matching defs:ESC

26 ESC = 27   # Introduce a control sequence.
210 def cursor_home (self, r=1, c=1): # <ESC>[{ROW};{COLUMN}H
216 def cursor_back (self,count=1): # <ESC>[{COUNT}D (not confused with down)
221 def cursor_down (self,count=1): # <ESC>[{COUNT}B (not confused with back)
226 def cursor_forward (self,count=1): # <ESC>[{COUNT}C
231 def cursor_up (self,count=1): # <ESC>[{COUNT}A
236 def cursor_up_reverse (self): # <ESC> M (called RI -- Reverse Index)
243 def cursor_force_position (self, r, c): # <ESC>[{ROW};{COLUMN}f
249 def cursor_save (self): # <ESC>[s
255 def cursor_unsave (self): # <ESC>[u
261 def cursor_save_attrs (self): # <ESC>7
268 def cursor_restore_attrs (self): # <ESC>8
283 def scroll_screen (self): # <ESC>[r
290 def scroll_screen_rows (self, rs, re): # <ESC>[{start};{end}r
298 def scroll_down (self): # <ESC>D
307 def scroll_up (self): # <ESC>M
316 def erase_end_of_line (self): # <ESC>[0K -or- <ESC>[K
323 def erase_start_of_line (self): # <ESC>[1K
330 def erase_line (self): # <ESC>[2K
336 def erase_down (self): # <ESC>[0J -or- <ESC>[J
344 def erase_up (self): # <ESC>[1J
352 def erase_screen (self): # <ESC>[2J
358 def set_tab (self): # <ESC>H
364 def clear_tab (self): # <ESC>[g
370 def clear_all_tabs (self): # <ESC>[3g
376 # Insert line Esc [ Pn L
377 # Delete line Esc [ Pn M
378 # Delete character Esc [ Pn P
379 # Scrolling region Esc [ Pn(top);Pn(bot) r