diff options
author | Luuk van Baal <luukvbaal@gmail.com> | 2023-04-26 20:30:39 +0200 |
---|---|---|
committer | Luuk van Baal <luukvbaal@gmail.com> | 2023-05-02 13:11:46 +0200 |
commit | 2918720addd3837abcf06f457e8e2cf674ece5e7 (patch) | |
tree | a0102ec4094fd7bfeb23d33e00889de0e003c6ac /test | |
parent | 34a4f3729ce4a047ae945238276c8e2dabc38048 (diff) | |
download | rneovim-2918720addd3837abcf06f457e8e2cf674ece5e7.tar.gz rneovim-2918720addd3837abcf06f457e8e2cf674ece5e7.tar.bz2 rneovim-2918720addd3837abcf06f457e8e2cf674ece5e7.zip |
vim-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 "<<<".
https://github.com/vim/vim/commit/0937b9fb244949b7ce9bfcf8398d7495b9b6aa85
Co-authored-by: Bram Moolenaar <Bram@vim.org>
Diffstat (limited to 'test')
-rw-r--r-- | test/old/testdir/test_breakindent.vim | 2 | ||||
-rw-r--r-- | test/old/testdir/test_listlbr_utf8.vim | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/old/testdir/test_breakindent.vim b/test/old/testdir/test_breakindent.vim index 9cc398f64a..3cbc1f4900 100644 --- a/test/old/testdir/test_breakindent.vim +++ b/test/old/testdir/test_breakindent.vim @@ -700,7 +700,7 @@ func Test_breakindent19_sbr_nextpage() norm! 5gj let lines = s:screen_lines(1, 20) let expect = [ - \ "<<<aaaaaaaaaaaaaaaaa", + \ ">aaaaaaaaaaaaaaaaaaa", \ ">aaaaaaaaaaaaaaaaaaa", \ ">aaaaaaaaaaaaaaaaaaa", \ ] diff --git a/test/old/testdir/test_listlbr_utf8.vim b/test/old/testdir/test_listlbr_utf8.vim index 47683696d1..15b248964f 100644 --- a/test/old/testdir/test_listlbr_utf8.vim +++ b/test/old/testdir/test_listlbr_utf8.vim @@ -167,7 +167,7 @@ func Test_visual_block_and_selection_exclusive() exe "norm! $3B\<C-v>eAx\<Esc>" let lines = s:screen_lines([1, 10], winwidth(0)) let expect = [ -\ "<<<obar foobar ", +\ "+foobar foobar ", \ "+foobar foobar ", \ "+foobar foobar ", \ "+foobar foobar ", |