view src/testdir/test_join.vim @ 9170:7cae03af1bb4

Added tag v7.4.1868 for changeset 0ea97a753a2d6b5dde9e94275ff88c988fea9a90
author Christian Brabandt <cb@256bit.org>
date Wed, 01 Jun 2016 23:15:07 +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