view src/testdir/test_curswant.vim @ 17724:76fba68d1c67 v8.1.1859

patch 8.1.1859: timer test sometimes fails on Mac commit https://github.com/vim/vim/commit/427dddf014fea1326ea7f8c0951b0667dc037409 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Aug 16 21:22:41 2019 +0200 patch 8.1.1859: timer test sometimes fails on Mac Problem: Timer test sometimes fails on Mac. Solution: Show more info when it fails.
author Bram Moolenaar <Bram@vim.org>
date Fri, 16 Aug 2019 21:30:03 +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