mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
defaults: win: 'shellpipe' for cmd.exe (#8827)
">%s 2>&1" redirects stderr to a file, same as 'shellredir' on Windows.
This commit is contained in:
parent
8213109304
commit
c1187d4af0
@ -2044,9 +2044,9 @@ return {
|
||||
vi_def=true,
|
||||
varname='p_sp',
|
||||
defaults={
|
||||
condition='UNIX',
|
||||
if_true={vi="| tee"},
|
||||
if_false={vi=">"},
|
||||
condition='WIN32',
|
||||
if_true={vi=">%s 2>&1"},
|
||||
if_false={vi="| tee"},
|
||||
}
|
||||
},
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user