diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-12-29 22:43:38 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-12-29 22:43:43 -0500 |
commit | 1250a01325102890499de1ec5ff3c132c28331d4 (patch) | |
tree | 72cefc1d642359ec88168706ecd82a6194c8de15 | |
parent | 74e37ac665bf2f5ec5d20f73352972cca8808f04 (diff) | |
download | rneovim-1250a01325102890499de1ec5ff3c132c28331d4.tar.gz rneovim-1250a01325102890499de1ec5ff3c132c28331d4.tar.bz2 rneovim-1250a01325102890499de1ec5ff3c132c28331d4.zip |
vim-patch:8.2.0058: running tests changes ~/.viminfo
Problem: Running tests changes ~/.viminfo.
Solution: Make 'viminfo' empty when summarizing tests results. (closes vim/vim#5414)
https://github.com/vim/vim/commit/eb698d0b3295675f184ad4b62034e064cded4ade
-rw-r--r-- | src/nvim/testdir/summarize.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/testdir/summarize.vim b/src/nvim/testdir/summarize.vim index 9cf3f694ca..4e4135287b 100644 --- a/src/nvim/testdir/summarize.vim +++ b/src/nvim/testdir/summarize.vim @@ -1,6 +1,7 @@ if 1 " This is executed only with the eval feature set nocompatible + set viminfo= func Count(match, type) if a:type ==# 'executed' let g:executed += (a:match+0) |