view src/testdir/test_spell.vim @ 10966:398ad090256d v8.0.0372

patch 8.0.0372: more options are not always defined commit https://github.com/vim/vim/commit/a713ff819d134dc34e507c05273c935bfc17e795 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 25 22:18:43 2017 +0100 patch 8.0.0372: more options are not always defined Problem: More options are not always defined. Solution: Consistently define all possible options.
author Christian Brabandt <cb@256bit.org>
date Sat, 25 Feb 2017 22:30:04 +0100
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