Mercurial > vim
view src/testdir/test_join.vim @ 12225:fc791b69be77
Added tag v8.0.0992 for changeset bccf3de747249564fee1e2b1aca090391d5e5da7
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 24 Aug 2017 00:00:05 +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