Counter-hack to provide screen redraw on FreeBSD

I'd attempted to find something useful in the sh/csh/tcsh man pages to
get similar shell redirection that &>/>& does, but it appears that all
fds are redirected, not just stderr and stdout.
This commit is contained in:
Matthew Batema 2011-09-19 13:10:53 -07:00
parent cf6aa9a414
commit f4177a3236

View File

@ -286,6 +286,10 @@ function! SyntasticMake(options)
let &shellpipe=old_shellpipe
let &shell=old_shell
if s:uname =~ "FreeBSD"
redraw!
endif
return errors
endfunction