diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2013-03-22 10:36:55 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2013-03-22 10:36:55 +0000 |
commit | 137a4bbc41fe6e0976510998536f8a256c2db738 (patch) | |
tree | 2feb3b6ca7bec7a99bf02764626bb3bfe64cc861 /usr.bin/tmux/input.c | |
parent | 4988d8fd04f07e5d2462fe91e5111b3c0c70a189 (diff) |
Implement DECAWM (SM/RM 7) using existing MODE_WRAP flag.
Diffstat (limited to 'usr.bin/tmux/input.c')
-rw-r--r-- | usr.bin/tmux/input.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/usr.bin/tmux/input.c b/usr.bin/tmux/input.c index 2f27a0e7d54..e2d61345295 100644 --- a/usr.bin/tmux/input.c +++ b/usr.bin/tmux/input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: input.c,v 1.60 2013/03/22 10:33:50 nicm Exp $ */ +/* $OpenBSD: input.c,v 1.61 2013/03/22 10:36:53 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1248,6 +1248,9 @@ input_csi_dispatch(struct input_ctx *ictx) screen_write_cursormove(&ictx->ctx, 0, 0); screen_write_clearscreen(&ictx->ctx); break; + case 7: /* DECAWM */ + screen_write_mode_clear(&ictx->ctx, MODE_WRAP); + break; case 25: /* TCEM */ screen_write_mode_clear(&ictx->ctx, MODE_CURSOR); break; @@ -1305,6 +1308,9 @@ input_csi_dispatch(struct input_ctx *ictx) screen_write_cursormove(&ictx->ctx, 0, 0); screen_write_clearscreen(&ictx->ctx); break; + case 7: /* DECAWM */ + screen_write_mode_set(&ictx->ctx, MODE_WRAP); + break; case 25: /* TCEM */ screen_write_mode_set(&ictx->ctx, MODE_CURSOR); break; |