diff options
| author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-12-06 20:45:17 -0500 |
|---|---|---|
| committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-12-07 11:48:55 -0500 |
| commit | 7d8f32338f4bbb4b2addeacc17aceca9f73fe644 (patch) | |
| tree | d6f622ea97782a4894a2f62e1eb2d12c20129aeb /src/nvim/testdir/shared.vim | |
| parent | 30ed245d008045a505a87ab21d22ada45dd1f4b5 (diff) | |
| download | rneovim-7d8f32338f4bbb4b2addeacc17aceca9f73fe644.tar.gz rneovim-7d8f32338f4bbb4b2addeacc17aceca9f73fe644.tar.bz2 rneovim-7d8f32338f4bbb4b2addeacc17aceca9f73fe644.zip | |
vim-patch:8.1.2402: typos and other small things
Problem: Typos and other small things.
Solution: Small fixes.
https://github.com/vim/vim/commit/f48ee3c28488f7c361732316f905ac420b3d8087
Diffstat (limited to 'src/nvim/testdir/shared.vim')
| -rw-r--r-- | src/nvim/testdir/shared.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/testdir/shared.vim b/src/nvim/testdir/shared.vim index b0b59db686..3875ffc056 100644 --- a/src/nvim/testdir/shared.vim +++ b/src/nvim/testdir/shared.vim @@ -314,6 +314,9 @@ func RunVimPiped(before, after, arguments, pipecmd) let args .= ' -S Xafter.vim' endif + " Optionally run Vim under valgrind + " let cmd = 'valgrind --tool=memcheck --leak-check=yes --num-callers=25 --log-file=valgrind ' . cmd + exe "silent !" . a:pipecmd . cmd . args . ' ' . a:arguments if len(a:before) > 0 |