comparison src/testdir/test_textformat.vim @ 19231:b8fd7364befd v8.2.0174

patch 8.2.0174: various commands not completely tested Commit: https://github.com/vim/vim/commit/5d98dc2a48156d44139b75c689bd3137ff7fe8bf Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jan 29 21:57:34 2020 +0100 patch 8.2.0174: various commands not completely tested Problem: Various commands not completely tested. Solution: Add more test cases. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/5551)
author Bram Moolenaar <Bram@vim.org>
date Wed, 29 Jan 2020 22:00:04 +0100
parents e8fe65da4198
children e053bf71b998
comparison
equal deleted inserted replaced
19230:21e430519a6c 19231:b8fd7364befd
422 \ "\t\t\t\t asdfaqwer axxxoikey", 422 \ "\t\t\t\t asdfaqwer axxxoikey",
423 \ "" 423 \ ""
424 \ ], getline(1, '$')) 424 \ ], getline(1, '$'))
425 enew! 425 enew!
426 426
427 " align text with 'wrapmargin'
428 call setline(1, ['Vim'])
429 set textwidth=0
430 set wrapmargin=60
431 right
432 call assert_equal("\t\t Vim", getline(1))
433 set wrapmargin&
434
427 set tw& 435 set tw&
428 endfunc 436 endfunc
429 437
430 " Test formatting a paragraph. 438 " Test formatting a paragraph.
431 func Test_format_para() 439 func Test_format_para()