From 10abdd97cf23b7a389cb9b97f4d68a142e8e4bf0 Mon Sep 17 00:00:00 2001 From: Tiago Cunha Date: Mon, 8 Feb 2010 18:32:34 +0000 Subject: Sync OpenBSD patchset 642: Add an option to disable the smcup/rmcup alternate screen behaviour inside tmux. From clemens fischer. --- input.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'input.c') diff --git a/input.c b/input.c index 27674d0c..6d457880 100644 --- a/input.c +++ b/input.c @@ -1,4 +1,4 @@ -/* $Id: input.c,v 1.106 2010-01-08 16:22:02 tcunha Exp $ */ +/* $Id: input.c,v 1.107 2010-02-08 18:32:34 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -1148,6 +1148,7 @@ void input_handle_sequence_sm(struct input_ctx *ictx) { struct window_pane *wp = ictx->wp; + struct options *oo = &wp->window->options; struct screen *s = &wp->base; u_int sx, sy; uint16_t n; @@ -1178,6 +1179,8 @@ input_handle_sequence_sm(struct input_ctx *ictx) case 1049: if (wp->saved_grid != NULL) break; + if (!options_get_number(oo, "alternate-screen")) + break; sx = screen_size_x(s); sy = screen_size_y(s); @@ -1224,6 +1227,7 @@ void input_handle_sequence_rm(struct input_ctx *ictx) { struct window_pane *wp = ictx->wp; + struct options *oo = &wp->window->options; struct screen *s = &wp->base; u_int sx, sy; uint16_t n; @@ -1254,6 +1258,8 @@ input_handle_sequence_rm(struct input_ctx *ictx) case 1049: if (wp->saved_grid == NULL) break; + if (!options_get_number(oo, "alternate-screen")) + break; sx = screen_size_x(s); sy = screen_size_y(s); -- cgit