Implement scroll by n lines

This commit is contained in:
Kovid Goyal
2016-11-24 10:36:54 +05:30
parent 2e3e6d331d
commit d65caa767a
2 changed files with 14 additions and 0 deletions

View File

@@ -171,6 +171,12 @@
// of cursor move left.
#define DCH 'P'
// Scroll up by the specified number of lines
#define SU 'S'
// Scroll down by the specified number of lines
#define SD 'T'
// *Erase character*: Erase the indicated # of characters on the
// current line.
#define ECH 'X'