Mercurial > vim
view src/testdir/test_scroll_opt.vim @ 29489:7c639dff32dd v9.0.0086
patch 9.0.0086: tabline is not redrawn when entering command line
Commit: https://github.com/vim/vim/commit/6791adca53981666f0cf23e264e102b795224044
Author: zeertzjq <zeertzjq@outlook.com>
Date: Tue Jul 26 20:42:25 2022 +0100
patch 9.0.0086: tabline is not redrawn when entering command line
Problem: Tabline is not redrawn when entering command line.
Solution: Set "redraw_tabline". (closes https://github.com/vim/vim/issues/10771)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Tue, 26 Jul 2022 21:45:04 +0200 |
parents | 08940efa6b4e |
children | 6c6ac189a05f |
line wrap: on
line source
" Test for reset 'scroll' func Test_reset_scroll() let scr = &l:scroll setlocal scroll=1 setlocal scroll& call assert_equal(scr, &l:scroll) setlocal scroll=1 setlocal scroll=0 call assert_equal(scr, &l:scroll) try execute 'setlocal scroll=' . (winheight(0) + 1) " not reached call assert_false(1) catch call assert_exception('E49:') endtry split let scr = &l:scroll setlocal scroll=1 setlocal scroll& call assert_equal(scr, &l:scroll) setlocal scroll=1 setlocal scroll=0 call assert_equal(scr, &l:scroll) quit! endfunc " vim: shiftwidth=2 sts=2 expandtab