1
0
forked from aniani/vim

patch 8.2.0174: various commands not completely tested

Problem:    Various commands not completely tested.
Solution:   Add more test cases. (Yegappan Lakshmanan, closes #5551)
This commit is contained in:
Bram Moolenaar
2020-01-29 21:57:34 +01:00
parent 0ff6aad393
commit 5d98dc2a48
12 changed files with 332 additions and 4 deletions

View File

@@ -424,6 +424,14 @@ func Test_format_align()
\ ], getline(1, '$'))
enew!
" align text with 'wrapmargin'
call setline(1, ['Vim'])
set textwidth=0
set wrapmargin=60
right
call assert_equal("\t\t Vim", getline(1))
set wrapmargin&
set tw&
endfunc