view src/testdir/test_curswant.vim @ 23068:2f034cb0a046 v8.2.2080

patch 8.2.2080: Vim9: no proper error message for using s:var in for loop Commit: https://github.com/vim/vim/commit/ea87069d7814497181483877651aef6d97182120 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Dec 2 14:24:30 2020 +0100 patch 8.2.2080: Vim9: no proper error message for using s:var in for loop Problem: Vim9: no proper error message for using s:var in for loop. Solution: Give a specific error.
author Bram Moolenaar <Bram@vim.org>
date Wed, 02 Dec 2020 14:30:03 +0100
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