This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch tymux
in repository terminology.
View the commit online.
commit d900620799a480aeb0373bf1acc3a5438dd4293a
Author: [email protected] <[email protected]>
AuthorDate: Sun Mar 22 13:08:04 2026 -0600
fix: send resize after tymux native switch
The _termio_tymux_switch_job function attaches to the daemon but
never sent a RESIZE, leaving the PTY with stale dimensions. Add
the missing termsession_resize call after session setup.
---
src/bin/termio.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/bin/termio.c b/src/bin/termio.c
index e00b695b..2b148131 100644
--- a/src/bin/termio.c
+++ b/src/bin/termio.c
@@ -3908,6 +3908,7 @@ _termio_tymux_switch_job(void *data)
if (sd->term)
term_tymux_indicator_set(sd->term, EINA_TRUE);
+ termtymux_resize(tymux, sd->grid.w, sd->grid.h);
_smart_apply(obj);
}
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.