From 1aa76b8fd06c278fe36c39b0bbe7233c775d7423 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 23 Feb 2020 15:17:27 +0100 Subject: patch 8.2.0308: 'showbreak' does not work for a very long line Problem: 'showbreak' does not work for a very long line. (John Little) Solution: Check whether 'briopt' contains "sbr". (Ken Takata, closes #5523, closes #5684) --- src/testdir/test_breakindent.vim | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/testdir/test_breakindent.vim') diff --git a/src/testdir/test_breakindent.vim b/src/testdir/test_breakindent.vim index 6e4e090f79..ad4ae1dc26 100644 --- a/src/testdir/test_breakindent.vim +++ b/src/testdir/test_breakindent.vim @@ -682,5 +682,15 @@ func Test_breakindent19_sbr_nextpage() \ "> aaaaaaaaaaaaaaaaaa", \ ] call s:compare_lines(expect, lines) + + setl breakindent briopt=min:18 sbr=> + norm! 5gj + let lines = s:screen_lines(1, 20) + let expect = [ + \ ">aaaaaaaaaaaaaaaaaaa", + \ ">aaaaaaaaaaaaaaaaaaa", + \ ">aaaaaaaaaaaaaaaaaaa", + \ ] + call s:compare_lines(expect, lines) call s:close_windows('set breakindent& briopt& sbr&') endfunc -- cgit v1.2.3