home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / TOP / USR / MAN / vt52.man < prev    next >
Text File  |  2009-11-06  |  3KB  |  114 lines

  1.                     Control Codes for Terminal ST - VT52
  2.                     ------------------------------------
  3.  
  4.  
  5.  
  6. ESC A
  7.   Cursor Up
  8.  
  9.   This sequence moves the cursor up one line. If the cursor is already on the
  10.   top line of the screen, this sequence has no effect.
  11.  
  12.  
  13. ESC B
  14.   Cursor down
  15.  
  16.   This moves the cursor down one line. If the cursor is already on the last
  17.   line of the screen, this escape sequence has no effect.
  18.  
  19.  
  20. ESC C
  21.   Cursor Forward
  22.  
  23.   This moves the cursor one position to the right. If this function would
  24.   move the cursor off the screen, this sequence has no effect.
  25.  
  26.  
  27. ESC D
  28.   Cursor Backward
  29.  
  30.   This moves the cursor one position to the left. This is a non-destructive
  31.   move because the character over which the cursor now rests is not replaced
  32.   by a blank. If the cursor is already in column 0, this escape sequence has
  33.   no effect.
  34.  
  35.  
  36. ESC E
  37.   Clear Screen (and Home Cursor)
  38.  
  39.   This moves the cursor to column 0, row 0 (the top left-hand corner of the
  40.   screen), and clears all characters from the screen.
  41.  
  42.  
  43. ESC H
  44.   Home Cursor
  45.  
  46.   This moves the cursor to column 0, row 0. The screen is NOT cleared.
  47.  
  48.  
  49. ESC J
  50.   Erase to End of Page
  51.  
  52.   Erases all the characters from cursor (including cursor position) to the
  53.   end of the page.
  54.  
  55.  
  56. ESC K
  57.   Clear to End of Line
  58.  
  59.   This sequence clears the line from the current cursor position (including)
  60.   to the end of the line.
  61.  
  62.  
  63. ESC L
  64.   Insert Line
  65.  
  66.   Inserts a new blank line by moving the line that the cursor is on, and all
  67.   following lines, down one line. Then, the cursor is moved to the beginning
  68.   of the new blank line.
  69.  
  70.  
  71. ESC M
  72.   Delete Line
  73.  
  74.   Deletes the contents of the line that the cursor is on, places the cursor
  75.   at the beginning of the line, moves all the following lines up one line,
  76.   and adds a blank line at the bottom.
  77.  
  78.  
  79. ESC Y
  80.   Position Cursor
  81.  
  82.   The two characters that follow the "Y" specify the row and column to which
  83.   the cursor is to be moved. The first character specifies the row, the
  84.   second the column. Rows and columns numbers are biased with $20 (hex) and
  85.   the left upper corner of the screen is row 0, column 0.
  86.  
  87.  
  88. ESC e
  89.   Enable Cursor
  90.  
  91.   This sequence causes the cursor to be visible.
  92.  
  93.  
  94. ESC f
  95.   Disable Cursor
  96.  
  97.   This sequence causes the cursor to be invisible. The cursor may still
  98.   be moved about on the display, using the escape sequences defined here.
  99.  
  100.  
  101. ESC p
  102.   Enter Reverse Video Mode
  103.  
  104.   Enters the reverse video mode so that characters are displayed as background
  105.   color characters on a foreground colored cell.
  106.  
  107.  
  108. ESC q
  109.   Exit Reverse Video Mode
  110.  
  111.   Exits the reverse video mode.
  112.  
  113.  
  114.