diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-01-24 14:15:28 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-01-24 14:19:54 -0500 |
commit | 69d1094271fdeddc7267c4bf85f02c613cf51a22 (patch) | |
tree | 1a0aa9c885442de5400ade69281d959f6b798b1d | |
parent | 2ce7e4e8a7cba701685ab8413153157510d18da3 (diff) | |
download | rneovim-69d1094271fdeddc7267c4bf85f02c613cf51a22.tar.gz rneovim-69d1094271fdeddc7267c4bf85f02c613cf51a22.tar.bz2 rneovim-69d1094271fdeddc7267c4bf85f02c613cf51a22.zip |
vim-patch:8.2.2399: fold test fails in wide terminal
Problem: Fold test fails in wide terminal.
Solution: Adjust the test. (Dominique Pelle, closes vim/vim#7731, closes vim/vim#7739)
https://github.com/vim/vim/commit/7cf0c114d690c91ac88c92a1a6f1b1935cb6410f
-rw-r--r-- | src/nvim/testdir/test_fold.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_fold.vim b/src/nvim/testdir/test_fold.vim index 18f328acf4..2d058e8e32 100644 --- a/src/nvim/testdir/test_fold.vim +++ b/src/nvim/testdir/test_fold.vim @@ -827,7 +827,7 @@ func Test_fold_relative_move() set fdm=indent sw=2 wrap tw=80 let content = [ ' foo', ' bar', ' baz', - \ repeat('x', 100), + \ repeat('x', &columns + 1), \ ' foo', ' bar', ' baz' \ ] call append(0, content) |