=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/input.c,v retrieving revision 1.146 retrieving revision 1.147 diff -u -r1.146 -r1.147 --- src/usr.bin/tmux/input.c 2019/03/12 20:02:47 1.146 +++ src/usr.bin/tmux/input.c 2019/03/13 07:34:36 1.147 @@ -1,4 +1,4 @@ -/* $OpenBSD: input.c,v 1.146 2019/03/12 20:02:47 nicm Exp $ */ +/* $OpenBSD: input.c,v 1.147 2019/03/13 07:34:36 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -1471,7 +1471,7 @@ case INPUT_CSI_HPA: n = input_get(ictx, 0, 1, 1); if (n != -1) - screen_write_cursormove(sctx, n - 1, -1, 1); + screen_write_cursormove(sctx, n - 1, -1, 0); break; case INPUT_CSI_ICH: n = input_get(ictx, 0, 1, 1); @@ -1540,7 +1540,7 @@ case INPUT_CSI_VPA: n = input_get(ictx, 0, 1, 1); if (n != -1) - screen_write_cursormove(sctx, -1, n - 1, 1); + screen_write_cursormove(sctx, -1, n - 1, 0); break; case INPUT_CSI_DECSCUSR: n = input_get(ictx, 0, 0, 0);