I posted the same issue in the neovim bugtracker https://github.com/neovim/neovim/issues/5350. The suggested that it is more likely a regression in xfce-terminal. Another issue that sounded similar according to them is this one: https://github.com/neovim/neovim/issues/3245 - `nvim --version`: 0.1.6-dev - Vim (version: 7.4 1-2156 ) behaves differently? Yes, it does not have this bug. - Operating system/version: Ubuntu 16.04.1 - Terminal name/version: Xfce4-terminal 0.6.92 (xfce 4.12), version 0.6.3 does not trigger this bug. - `$TERM`: xterm-256color ### Actual behaviour After sending nvim with a vsplit to background with ^Z it is shortly opened very small before changing to the correct terminal size. This changes the vsplit layout. ### Expected behaviour It uses the full size of the terminal and the vsplit layout is unchanged. ### Steps to reproduce using `nvim -u NORC` ``` nvim -u NORC :vs ^Z fg ``` This happens both on xfce 0.6.90 and 0.6.92.
This commit fixes the issue for me: https://git.xfce.org/apps/xfce4-terminal/commit/?id=483c4feb56b834f04a25ac63e1319b40d6c2c548 Please verify. Thanks.
Yes, with those changes it is fixed.
(In reply to Jelte Fennema from comment #2) > Yes, with those changes it is fixed. Thanks!