comparison src/testdir/test_fold.vim @ 23260:ef4f890f02f6 v8.2.2176

patch 8.2.2176: crash with a sequence of fold commands Commit: https://github.com/vim/vim/commit/6a78f328442073c32d58eafc13ce5a1ca7729eeb Author: Bram Moolenaar <Bram@vim.org> Date: Mon Dec 21 14:01:41 2020 +0100 patch 8.2.2176: crash with a sequence of fold commands Problem: Crash with a sequence of fold commands. Solution: Bail out when there are no folds at all. Add a test (Dominique Pell?) (closes #7515)
author Bram Moolenaar <Bram@vim.org>
date Mon, 21 Dec 2020 14:15:03 +0100
parents f74978697fb6
children 09ad3f1b9714
comparison
equal deleted inserted replaced
23259:1c0ee61d4bc9 23260:ef4f890f02f6
850 normal zd 850 normal zd
851 fold 851 fold
852 bwipe! 852 bwipe!
853 endfunc 853 endfunc
854 854
855 " this was crashing
856 func Test_fold_create_delete()
857 new
858 norm zFzFzdzj
859 bwipe!
860 endfunc
861
855 " vim: shiftwidth=2 sts=2 expandtab 862 " vim: shiftwidth=2 sts=2 expandtab