Mercurial > vim
view src/testdir/test_scroll_opt.vim @ 14260:9ff35e144467 v8.1.0146
patch 8.1.0146: when $LANG is set the compiler test may fail
commit https://github.com/vim/vim/commit/f0447e89a52885630947510f2d1b55f665a1a20e
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Jul 3 21:26:38 2018 +0200
patch 8.1.0146: when $LANG is set the compiler test may fail
Problem: When $LANG is set the compiler test may fail.
Solution: Unset $LANG.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 03 Jul 2018 21:30: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