diff options
author | nicm <nicm> | 2019-08-05 06:42:02 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-08-05 06:42:02 +0000 |
commit | 45f4ff54850ff9b448070a96b33e63451f973e33 (patch) | |
tree | e8a40ff8eb12263b801fb774582f6d3c8ac3f6e9 /tmux.h | |
parent | c4744620af18de13d4a2981b78992ae9ddfd937a (diff) | |
download | rtmux-45f4ff54850ff9b448070a96b33e63451f973e33.tar.gz rtmux-45f4ff54850ff9b448070a96b33e63451f973e33.tar.bz2 rtmux-45f4ff54850ff9b448070a96b33e63451f973e33.zip |
Add support for the SD (scroll down) escape sequence, GitHub issue 1861.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -420,6 +420,7 @@ enum tty_code_code { TTYC_REV, TTYC_RGB, TTYC_RI, + TTYC_RIN, TTYC_RMACS, TTYC_RMCUP, TTYC_RMKX, @@ -1925,6 +1926,7 @@ void tty_cmd_insertcharacter(struct tty *, const struct tty_ctx *); void tty_cmd_insertline(struct tty *, const struct tty_ctx *); void tty_cmd_linefeed(struct tty *, const struct tty_ctx *); void tty_cmd_scrollup(struct tty *, const struct tty_ctx *); +void tty_cmd_scrolldown(struct tty *, const struct tty_ctx *); void tty_cmd_reverseindex(struct tty *, const struct tty_ctx *); void tty_cmd_setselection(struct tty *, const struct tty_ctx *); void tty_cmd_rawstring(struct tty *, const struct tty_ctx *); @@ -2301,6 +2303,7 @@ void screen_write_reverseindex(struct screen_write_ctx *, u_int); void screen_write_scrollregion(struct screen_write_ctx *, u_int, u_int); void screen_write_linefeed(struct screen_write_ctx *, int, u_int); void screen_write_scrollup(struct screen_write_ctx *, u_int, u_int); +void screen_write_scrolldown(struct screen_write_ctx *, u_int, u_int); void screen_write_carriagereturn(struct screen_write_ctx *); void screen_write_clearendofscreen(struct screen_write_ctx *, u_int); void screen_write_clearstartofscreen(struct screen_write_ctx *, u_int); |