Mercurial > vim
view src/testdir/test_curswant.vim @ 13916:6789408b611e
Added tag v8.0.1828 for changeset 8314bb913e148a9d215b09be3e890608d26a6127
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 13 May 2018 14:45:06 +0200 |
parents | 0240e7e3d736 |
children | 08940efa6b4e |
line wrap: on
line source
" Tests for curswant not changing when setting an option func Test_curswant() new call append(0, ['1234567890', '12345']) normal! ggf8j call assert_equal(7, winsaveview().curswant) let &tabstop=&tabstop call assert_equal(4, winsaveview().curswant) normal! ggf8j call assert_equal(7, winsaveview().curswant) let &timeoutlen=&timeoutlen call assert_equal(7, winsaveview().curswant) normal! ggf8j call assert_equal(7, winsaveview().curswant) let &ttimeoutlen=&ttimeoutlen call assert_equal(7, winsaveview().curswant) enew! endfunc