view src/testdir/test_curswant.vim @ 14033:bcda3b864c31 v8.1.0034

patch 8.1.0034: cursor not restored with ":edit #" commit https://github.com/vim/vim/commit/adb8fbec4f4059d214fe6acf2485ffd35e803450 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jun 4 20:34:23 2018 +0200 patch 8.1.0034: cursor not restored with ":edit #" Problem: Cursor not restored with ":edit #". Solution: Don't assume autocommands moved the cursor when it was moved to the first non-blank.
author Christian Brabandt <cb@256bit.org>
date Mon, 04 Jun 2018 20:45:06 +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