comparison src/testdir/test_winbar.vim @ 24289:8938c0c98149 v8.2.2685

patch 8.2.2685: custom statusline not drawn correctly with WinBar Commit: https://github.com/vim/vim/commit/49c51b825a7435a750e64f7f0ebd09166e8559df Author: Bram Moolenaar <Bram@vim.org> Date: Thu Apr 1 16:16:18 2021 +0200 patch 8.2.2685: custom statusline not drawn correctly with WinBar Problem: Custom statusline not drawn correctly with WinBar. Solution: Also adjust the column for the custom status line. (Yee Cheng Chin, closes #8047)
author Bram Moolenaar <Bram@vim.org>
date Thu, 01 Apr 2021 16:30:05 +0200
parents 6062e10a7e72
children 2d726d5a6405
comparison
equal deleted inserted replaced
24288:9f2f0ae1db47 24289:8938c0c98149
139 " clean up 139 " clean up
140 call StopVimInTerminal(buf) 140 call StopVimInTerminal(buf)
141 call delete('XtestWinbarNotVisble') 141 call delete('XtestWinbarNotVisble')
142 endfunction 142 endfunction
143 143
144 func Test_winbar_not_visible_custom_statusline()
145 CheckScreendump
146
147 let lines =<< trim END
148 split
149 nnoremenu WinBar.Test :test
150 set winminheight=0
151 set statusline=abcde
152 wincmd j
153 wincmd _
154 END
155 call writefile(lines, 'XtestWinbarNotVisble')
156 let buf = RunVimInTerminal('-S XtestWinbarNotVisble', #{rows: 10})
157 call VerifyScreenDump(buf, 'Test_winbar_not_visible_custom_statusline', {})
158
159 " clean up
160 call StopVimInTerminal(buf)
161 call delete('XtestWinbarNotVisble')
162 endfunction
163
144 " vim: shiftwidth=2 sts=2 expandtab 164 " vim: shiftwidth=2 sts=2 expandtab