diff options
| author | Sean Dewar <seandewar@users.noreply.github.com> | 2021-08-07 22:39:23 +0100 |
|---|---|---|
| committer | Sean Dewar <seandewar@users.noreply.github.com> | 2021-08-12 22:35:25 +0100 |
| commit | 5d883498179651c6da95b10959e83cf8707eaa4f (patch) | |
| tree | 1e0019000c1a2cb9af8895c38aaeb49a94d96823 /src/nvim/testdir/test_diffmode.vim | |
| parent | 56b56a76e8294a319d2db32581f82421d4a4d446 (diff) | |
| download | rneovim-5d883498179651c6da95b10959e83cf8707eaa4f.tar.gz rneovim-5d883498179651c6da95b10959e83cf8707eaa4f.tar.bz2 rneovim-5d883498179651c6da95b10959e83cf8707eaa4f.zip | |
feat(eval): partially port v8.1.1915
Cannot be fully ported as chdir() hasn't been ported yet.
Diffstat (limited to 'src/nvim/testdir/test_diffmode.vim')
| -rw-r--r-- | src/nvim/testdir/test_diffmode.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_diffmode.vim b/src/nvim/testdir/test_diffmode.vim index 1552bc4f78..8a709d3f0d 100644 --- a/src/nvim/testdir/test_diffmode.vim +++ b/src/nvim/testdir/test_diffmode.vim @@ -725,7 +725,7 @@ func Test_diff_filler() diffthis redraw - call assert_equal([0, 0, 0, 0, 0, 0, 0, 1, 0], map(range(-1, 7), 'diff_filler(v:val)')) + call assert_equal([0, 0, 0, 0, 0, 0, 0, 1, 0], map(range(-1, 7), 'v:val->diff_filler()')) wincmd w call assert_equal([0, 0, 0, 0, 2, 0, 0, 0], map(range(-1, 6), 'diff_filler(v:val)')) |