view src/testdir/test_curswant.vim @ 26048:e8592947d90b v8.2.3558

patch 8.2.3558: Vim9: asserting the wrong variable Commit: https://github.com/vim/vim/commit/06ca48a40f049f20347c9630a180457d1f1aece5 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Oct 23 10:25:21 2021 +0100 patch 8.2.3558: Vim9: asserting the wrong variable Problem: Vim9: asserting the wrong variable. Solution: Don't use Foo, use Goo.
author Bram Moolenaar <Bram@vim.org>
date Sat, 23 Oct 2021 11:30:04 +0200
parents 08940efa6b4e
children
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

" vim: shiftwidth=2 sts=2 expandtab