diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-12-25 17:59:30 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-12-25 17:59:41 -0500 |
commit | 2f1e6ca7730b78fa6f725914baec09dab2c411f4 (patch) | |
tree | 9116e356dc719898469a1f35a62c0a7e87397900 | |
parent | 6b8a365465352c9ba58a22f5b0c981f029ab1eca (diff) | |
download | rneovim-2f1e6ca7730b78fa6f725914baec09dab2c411f4.tar.gz rneovim-2f1e6ca7730b78fa6f725914baec09dab2c411f4.tar.bz2 rneovim-2f1e6ca7730b78fa6f725914baec09dab2c411f4.zip |
vim-patch:8.1.1184: undo file left behind after running test
Problem: Undo file left behind after running test.
Solution: Delete the undo file. (Dominique Pelle, closes vim/vim#4279)
https://github.com/vim/vim/commit/137c14bb4f18198ed38659dcfbdfd749115c7ab5
-rw-r--r-- | src/nvim/testdir/test_filechanged.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_filechanged.vim b/src/nvim/testdir/test_filechanged.vim index 8a5260e304..aa328f130e 100644 --- a/src/nvim/testdir/test_filechanged.vim +++ b/src/nvim/testdir/test_filechanged.vim @@ -86,6 +86,7 @@ func Test_FileChangedShell_reload() au! testreload bwipe! + call delete(undofile('Xchanged_r')) call delete('Xchanged_r') endfunc |