artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
20937d1
)
Fix window size report, from Vincent Bernat.
author
nicm
<nicm@openbsd.org>
Wed, 31 Aug 2022 08:07:05 +0000
(08:07 +0000)
committer
nicm
<nicm@openbsd.org>
Wed, 31 Aug 2022 08:07:05 +0000
(08:07 +0000)
usr.bin/tmux/input.c
patch
|
blob
|
history
diff --git
a/usr.bin/tmux/input.c
b/usr.bin/tmux/input.c
index
447f461
..
0f2210d
100644
(file)
--- a/
usr.bin/tmux/input.c
+++ b/
usr.bin/tmux/input.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: input.c,v 1.20
7 2022/08/02 11:09:26
nicm Exp $ */
+/* $OpenBSD: input.c,v 1.20
8 2022/08/31 08:07:05
nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
@@
-1899,7
+1899,7
@@
input_csi_dispatch_winops(struct input_ctx *ictx)
}
break;
case 18:
- input_reply(ictx, "\033[8;%u;%ut",
x, y
);
+ input_reply(ictx, "\033[8;%u;%ut",
y, x
);
break;
default:
log_debug("%s: unknown '%c'", __func__, ictx->ch);