comparison src/testdir/test_display.vim @ 10470:232a0d1d8f24 v8.0.0128

commit https://github.com/vim/vim/commit/7089237885218eb8a19805bc2b75481c4efcd6ba Author: Bram Moolenaar <Bram@vim.org> Date: Fri Dec 9 19:51:49 2016 +0100 patch 8.0.0128 Problem: Display test fails on MS-Windows. Solution: Set 'isprint' to "@".
author Christian Brabandt <cb@256bit.org>
date Fri, 09 Dec 2016 20:00:05 +0100
parents 34b50194f82d
children b25895ab67be
comparison
equal deleted inserted replaced
10469:62145ffdfe3b 10470:232a0d1d8f24
16 16
17 function! Test_display_foldcolumn() 17 function! Test_display_foldcolumn()
18 new 18 new
19 vnew 19 vnew
20 vert resize 25 20 vert resize 25
21 call assert_equal(25, winwidth(winnr()))
22 set isprint=@
21 23
22 1put='e more noise blah blah‚ more stuff here' 24 1put='e more noise blah blah‚ more stuff here'
23 25
24 let expect = "e more noise blah blah<82\n> more stuff here \n" 26 let expect = "e more noise blah blah<82\n> more stuff here \n"
25 27