view src/testdir/test_curswant.vim @ 15172:de7e90fb445c v8.1.0596

patch 8.1.0596: not all parts of printf() are tested commit https://github.com/vim/vim/commit/21e551cce26ea6ff389b6c90f1945facf1a8a066 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Dec 15 16:08:56 2018 +0100 patch 8.1.0596: not all parts of printf() are tested Problem: Not all parts of printf() are tested. Solution: Add a few more test cases. (Dominique Pelle, closes https://github.com/vim/vim/issues/3691)
author Bram Moolenaar <Bram@vim.org>
date Sat, 15 Dec 2018 16:15:05 +0100
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