view src/testdir/test_spell.vim @ 11320:cc5d3afd4d9a

Added tag v8.0.0545 for changeset 2dc624388934c15e501d19a6db94357fddafed33
author Christian Brabandt <cb@256bit.org>
date Fri, 07 Apr 2017 14:15:08 +0200
parents 2297aae8e127
children a2124e9bbb6a
line wrap: on
line source

" Test spell checking
" TODO: move test58 tests here

if !has('spell')
  finish
endif

func Test_wrap_search()
  new
  call setline(1, ['The', '', 'A plong line with two zpelling mistakes', '', 'End'])
  set spell wrapscan
  normal ]s
  call assert_equal('plong', expand('<cword>'))
  normal ]s
  call assert_equal('zpelling', expand('<cword>'))
  normal ]s
  call assert_equal('plong', expand('<cword>'))
  bwipe!
  set nospell
endfunc