view src/testdir/test_join.vim @ 11687:04684dddfe9a

Added tag v8.0.0726 for changeset 325a1dbf662da305bb1ed79448794666db8af36b
author Christian Brabandt <cb@256bit.org>
date Sun, 16 Jul 2017 20:45:04 +0200
parents dd2e2bd69d0e
children 15f0f9f16cd9
line wrap: on
line source

" Test for joining lines.

func Test_join_with_count()
  new
  call setline(1, ['one', 'two', 'three', 'four'])
  normal J
  call assert_equal('one two', getline(1))
  %del
  call setline(1, ['one', 'two', 'three', 'four'])
  normal 10J
  call assert_equal('one two three four', getline(1))
  quit!
endfunc