view src/testdir/test_curswant.vim @ 26921:b975b7c16ba1 v8.2.3989

patch 8.2.3989: some insert completion code is not tested Commit: https://github.com/vim/vim/commit/e982586f8eebf2b055987218f6d3f7a084c4bf69 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Mon Jan 3 11:03:48 2022 +0000 patch 8.2.3989: some insert completion code is not tested Problem: Some insert completion code is not tested. Solution: Add a few tests. Refactor thesaurus completion. (Yegappan Lakshmanan, closes #9460)
author Bram Moolenaar <Bram@vim.org>
date Mon, 03 Jan 2022 12:15: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