diff options
| author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-11-11 23:08:44 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-11 23:08:44 -0500 |
| commit | 4ae31c46f75aef7d7a80dd2a8d269c168806a1bd (patch) | |
| tree | 9fdd49c550b3d1d6a6bf7b6d17be607f21f9fb62 /src/nvim/testdir | |
| parent | 4875db2e56b395f47e3b9634b8c0a0e179fbe353 (diff) | |
| parent | 6d58f1eacef4be410c424f5f0e23c20ffdd791be (diff) | |
| download | rneovim-4ae31c46f75aef7d7a80dd2a8d269c168806a1bd.tar.gz rneovim-4ae31c46f75aef7d7a80dd2a8d269c168806a1bd.tar.bz2 rneovim-4ae31c46f75aef7d7a80dd2a8d269c168806a1bd.zip | |
Merge pull request #13273 from janlazo/vim-8.2.1972
vim-patch:8.2.{1972,1973,1974}
Diffstat (limited to 'src/nvim/testdir')
| -rw-r--r-- | src/nvim/testdir/test_fold.vim | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_fold.vim b/src/nvim/testdir/test_fold.vim index e4baa34e4a..3c90c45952 100644 --- a/src/nvim/testdir/test_fold.vim +++ b/src/nvim/testdir/test_fold.vim @@ -805,4 +805,14 @@ func Test_move_no_folds() bwipe! endfunc +" this was crashing +func Test_fold_create_delete_create() + new + fold + fold + normal zd + fold + bwipe! +endfunc + " vim: shiftwidth=2 sts=2 expandtab |