view src/testdir/test_join.vim @ 11017:da1cbfa57265

Added tag v8.0.0397 for changeset 4e7308525fe723c6f959e2db8e880610c8aee63a
author Christian Brabandt <cb@256bit.org>
date Wed, 01 Mar 2017 20:45:06 +0100
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