diff options
author | Tiago Cunha <tcunha@gmx.com> | 2012-03-07 13:36:19 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2012-03-07 13:36:19 +0000 |
commit | 3275e9bd5b4f9d8aa3961d3468fcd6765191fcc3 (patch) | |
tree | d4250d114482e2b2101db7428b742702d9a4a48d /screen-write.c | |
parent | 9d79a56402850ac35c57e35fe39990d84e1fd5fa (diff) | |
download | rtmux-3275e9bd5b4f9d8aa3961d3468fcd6765191fcc3.tar.gz rtmux-3275e9bd5b4f9d8aa3961d3468fcd6765191fcc3.tar.bz2 rtmux-3275e9bd5b4f9d8aa3961d3468fcd6765191fcc3.zip |
Sync OpenBSD patchset 1037:
Support "bracketed paste" mode. This adds a -p flag to paste-buffer - if
this is used and the application has requested bracketed pastes, then
tmux surrounds the pasted text by \033[200~ and \033[201~. Applications
like vim can (apparently) use this to avoid, for example, indenting the
text. From Ailin Nemui.
Diffstat (limited to 'screen-write.c')
-rw-r--r-- | screen-write.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/screen-write.c b/screen-write.c index 2f53b04f..4b3954d3 100644 --- a/screen-write.c +++ b/screen-write.c @@ -878,6 +878,18 @@ screen_write_mousemode_on(struct screen_write_ctx *ctx, int mode) s->mode |= mode; } +/* Set bracketed paste mode. */ +void +screen_write_bracketpaste(struct screen_write_ctx *ctx, int state) +{ + struct screen *s = ctx->s; + + if (state) + s->mode |= MODE_BRACKETPASTE; + else + s->mode &= ~MODE_BRACKETPASTE; +} + /* Line feed. */ void screen_write_linefeed(struct screen_write_ctx *ctx, int wrapped) |