Merge pull request #13224 from janlazo/vim-8.2.1944

vim-patch:8.1.{1829,1956,2234},8.2.1944
This commit is contained in:
Jan Edmund Lazo
2020-11-04 08:15:16 -05:00
committed by GitHub
2 changed files with 5 additions and 3 deletions

View File

@@ -291,6 +291,9 @@ func GetVimCommandClean()
let cmd = substitute(cmd, '-u NONE', '--clean', '') let cmd = substitute(cmd, '-u NONE', '--clean', '')
let cmd = substitute(cmd, '--headless', '', '') let cmd = substitute(cmd, '--headless', '', '')
" Force using utf-8, Vim may pick up something else from the environment.
" let cmd ..= ' --cmd "set enc=utf8" '
" Optionally run Vim under valgrind " Optionally run Vim under valgrind
" let cmd = 'valgrind --tool=memcheck --leak-check=yes --num-callers=25 --log-file=valgrind ' . cmd " let cmd = 'valgrind --tool=memcheck --leak-check=yes --num-callers=25 --log-file=valgrind ' . cmd

View File

@@ -1,8 +1,7 @@
" Test for $HOME on Windows. " Test for $HOME on Windows.
if !has('win32') source check.vim
finish CheckMSWindows
endif
let s:env = {} let s:env = {}