comparison src/testdir/test_highlight.vim @ 17172:6990c1160ea5 v8.1.1585

patch 8.1.1585: :let-heredoc does not trim enough commit https://github.com/vim/vim/commit/e7eb92708ec2092a2fc11e78703b5dcf83844412 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jun 24 00:58:07 2019 +0200 patch 8.1.1585: :let-heredoc does not trim enough Problem: :let-heredoc does not trim enough. Solution: Trim indent from the contents based on the indent of the first line. Use let-heredoc in more tests.
author Bram Moolenaar <Bram@vim.org>
date Mon, 24 Jun 2019 01:00:05 +0200
parents ba7727889385
children 079ce74ecaa5
comparison
equal deleted inserted replaced
17171:1b0f624dcd8d 17172:6990c1160ea5
576 func Test_wincolor() 576 func Test_wincolor()
577 if !CanRunVimInTerminal() 577 if !CanRunVimInTerminal()
578 throw 'Skipped: cannot make screendumps' 578 throw 'Skipped: cannot make screendumps'
579 endif 579 endif
580 580
581 call writefile([ 581 let lines =<< trim END
582 \ 'set cursorline cursorcolumn rnu', 582 set cursorline cursorcolumn rnu
583 \ 'call setline(1, ["","1111111111","22222222222","3 here 3",""])', 583 call setline(1, ["","1111111111","22222222222","3 here 3",""])
584 \ 'set wincolor=Pmenu', 584 set wincolor=Pmenu
585 \ '/here', 585 /here
586 \ ], 'Xtest_wincolor') 586 END
587 call writefile(lines, 'Xtest_wincolor')
587 let buf = RunVimInTerminal('-S Xtest_wincolor', {'rows': 8}) 588 let buf = RunVimInTerminal('-S Xtest_wincolor', {'rows': 8})
588 call term_wait(buf) 589 call term_wait(buf)
589 call term_sendkeys(buf, "2G5lvj") 590 call term_sendkeys(buf, "2G5lvj")
590 call term_wait(buf) 591 call term_wait(buf)
591 592