From 4be0e92db01a502863ac4bb26dd0fee16d833145 Mon Sep 17 00:00:00 2001 From: Shougo Date: Fri, 7 May 2021 21:07:13 +0900 Subject: vim-patch:8.1.1378: delete() can not handle a file name that looks like a pattern (#12784) Problem: Delete() can not handle a file name that looks like a pattern. Solution: Use readdir() instead of appending "/*" and expanding wildcards. (Ken Takata, closes vim/vim#4424, closes vim/vim#696) https://github.com/vim/vim/commit/701ff0a3e53d253d7300c385e582659bbff7860d --- src/nvim/testdir/test_command_count.vim | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/nvim/testdir/test_command_count.vim') diff --git a/src/nvim/testdir/test_command_count.vim b/src/nvim/testdir/test_command_count.vim index 55b230373f..36ff4cd1bb 100644 --- a/src/nvim/testdir/test_command_count.vim +++ b/src/nvim/testdir/test_command_count.vim @@ -103,6 +103,8 @@ endfunc func Test_command_count_2() silent! %argd + cd + arga a b c d call assert_fails('5argu', 'E16:') -- cgit