Mercurial > vim
view src/testdir/test_join.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 | 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