aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir
diff options
context:
space:
mode:
authorJan Edmund Lazo <janedmundlazo@hotmail.com>2018-08-09 12:13:27 -0400
committerJan Edmund Lazo <janedmundlazo@hotmail.com>2018-08-09 14:12:57 -0400
commite36fce75fb94461bccd8ebbcb5f544e39f85da2d (patch)
tree366037c436272e7789f0de3dcfdac3a9ba949fb3 /src/nvim/testdir
parentcb7bdf5f920df089adab8a74d2522440ad2d1490 (diff)
downloadrneovim-e36fce75fb94461bccd8ebbcb5f544e39f85da2d.tar.gz
rneovim-e36fce75fb94461bccd8ebbcb5f544e39f85da2d.tar.bz2
rneovim-e36fce75fb94461bccd8ebbcb5f544e39f85da2d.zip
vim-patch:8.0.1819: swap file warning for file with non-existing directory
Problem: Swap file warning for a file in a non-existing directory, if there is another with the same file name. (Juergen Weigert) Solution: When expanding the file name fails compare the file names. https://github.com/vim/vim/commit/8c3169c58eef3e04f643fe9e045a97b81429e0cb
Diffstat (limited to 'src/nvim/testdir')
-rw-r--r--src/nvim/testdir/test_swap.vim15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_swap.vim b/src/nvim/testdir/test_swap.vim
index 245e1f18bb..bc7b7c00d3 100644
--- a/src/nvim/testdir/test_swap.vim
+++ b/src/nvim/testdir/test_swap.vim
@@ -46,3 +46,18 @@ func Test_swap_directory()
call delete("Xtest2", "rf")
call delete("Xtest.je", "rf")
endfunc
+
+func Test_missing_dir()
+ call mkdir('Xswapdir')
+ exe 'set directory=' . getcwd() . '/Xswapdir'
+
+ call assert_equal('', glob('foo'))
+ call assert_equal('', glob('bar'))
+ edit foo/x.txt
+ " This should not give a warning for an existing swap file.
+ split bar/x.txt
+ only
+
+ set directory&
+ call delete('Xswapdir', 'rf')
+endfunc