mirror of
https://github.com/tmate-io/tmate.git
synced 2025-08-17 00:51:36 +02:00
Sync OpenBSD patchset 642:
Add an option to disable the smcup/rmcup alternate screen behaviour inside tmux. From clemens fischer.
This commit is contained in:
8
input.c
8
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 <nicm@users.sourceforge.net>
|
||||
@ -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);
|
||||
|
||||
|
Reference in New Issue
Block a user