Implement bracketed paste mode

Allow bracketed paste mode-setting control sequences to be passed to the
outer terminal.

Signed-off-by: Barosl LEE <vcs@barosl.com>

Closes #430
This commit is contained in:
Barosl LEE
2013-05-29 12:54:29 +09:00
committed by Keith Winstein
parent 06561d3500
commit c6bf3a2025
4 changed files with 12 additions and 2 deletions
+2
View File
@@ -268,6 +268,8 @@ static bool *get_DEC_mode( int param, Framebuffer *fb ) {
return &(fb->ds.auto_wrap_mode);
case 25:
return &(fb->ds.cursor_visible);
case 2004: /* bracketed paste */
return &(fb->ds.bracketed_paste);
}
return NULL;
}