view src/testdir/test_searchpos.vim @ 17871:521ce0d887e5 v8.1.1932

patch 8.1.1932: ml_get errors after using append() Commit: https://github.com/vim/vim/commit/d20070274c47668560e02db184e1f8e456c3c326 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Aug 27 21:56:06 2019 +0200 patch 8.1.1932: ml_get errors after using append() Problem: Ml_get errors after using append(). (Alex Genco) Solution: Do not update the cursor twice. (closes https://github.com/vim/vim/issues/1737)
author Bram Moolenaar <Bram@vim.org>
date Tue, 27 Aug 2019 22:00:04 +0200
parents 9fc996244059
children 0dcc2ee838dd
line wrap: on
line source

" Tests for searchpos()

func Test_searchpos()
  new one
  0put ='1a3'
  1put ='123xyz'
  call cursor(1, 1)
  call assert_equal([1, 1, 2], searchpos('\%(\([a-z]\)\|\_.\)\{-}xyz', 'pcW'))
  call cursor(1, 2)
  call assert_equal([2, 1, 1], searchpos('\%(\([a-z]\)\|\_.\)\{-}xyz', 'pcW'))
  set cpo-=c
  call cursor(1, 2)
  call assert_equal([1, 2, 2], searchpos('\%(\([a-z]\)\|\_.\)\{-}xyz', 'pcW'))
  call cursor(1, 3)
  call assert_equal([1, 3, 1], searchpos('\%(\([a-z]\)\|\_.\)\{-}xyz', 'pcW'))

  " Now with \zs, first match is in column 0, "a" is matched.
  call cursor(1, 3)
  call assert_equal([2, 4, 2], searchpos('\%(\([a-z]\)\|\_.\)\{-}\zsxyz', 'pcW'))
  " With z flag start at cursor column, don't see the "a".
  call cursor(1, 3)
  call assert_equal([2, 4, 1], searchpos('\%(\([a-z]\)\|\_.\)\{-}\zsxyz', 'pcWz'))

  set cpo+=c
  " close the window
  q!

endfunc