comparison src/testdir/test_breakindent.vim @ 30693:a59a8ce13129 v9.0.0681

patch 9.0.0681: "<<<" shows for 'smoothscroll' even when 'showbreak is set Commit: https://github.com/vim/vim/commit/0937b9fb244949b7ce9bfcf8398d7495b9b6aa85 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Oct 6 21:24:34 2022 +0100 patch 9.0.0681: "<<<" shows for 'smoothscroll' even when 'showbreak is set Problem: "<<<" shows for 'smoothscroll' even when 'showbreak is set. Solution: When 'showbreak' is set do not display "<<<".
author Bram Moolenaar <Bram@vim.org>
date Thu, 06 Oct 2022 22:30:03 +0200
parents 0e58aae55486
children 4fbd9086f149
comparison
equal deleted inserted replaced
30692:bfe956ad9520 30693:a59a8ce13129
658 658
659 setl breakindent briopt=min:18 sbr=> 659 setl breakindent briopt=min:18 sbr=>
660 norm! 5gj 660 norm! 5gj
661 let lines = s:screen_lines(1, 20) 661 let lines = s:screen_lines(1, 20)
662 let expect = [ 662 let expect = [
663 \ "<<<aaaaaaaaaaaaaaaaa", 663 \ ">aaaaaaaaaaaaaaaaaaa",
664 \ ">aaaaaaaaaaaaaaaaaaa", 664 \ ">aaaaaaaaaaaaaaaaaaa",
665 \ ">aaaaaaaaaaaaaaaaaaa", 665 \ ">aaaaaaaaaaaaaaaaaaa",
666 \ ] 666 \ ]
667 call s:compare_lines(expect, lines) 667 call s:compare_lines(expect, lines)
668 call s:close_windows('set breakindent& briopt& sbr&') 668 call s:close_windows('set breakindent& briopt& sbr&')