Mercurial > vim
view src/testdir/test_scroll_opt.vim @ 13810:cad480bac9e1 v8.0.1777
patch 8.0.1777: cannot cleanup before loading another colorscheme
commit https://github.com/vim/vim/commit/60a68362aa73f4a6cb534688978f9dc2b16e60fe
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Apr 30 15:40:48 2018 +0200
patch 8.0.1777: cannot cleanup before loading another colorscheme
Problem: Cannot cleanup before loading another colorscheme.
Solution: Add the ColorSchemePre autocommand event.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Mon, 30 Apr 2018 15:45:07 +0200 |
parents | f8f505ffc0a6 |
children | 08940efa6b4e |
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