diff options
Diffstat (limited to 'ftplugin')
-rw-r--r-- | ftplugin/latex-box/common.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ftplugin/latex-box/common.vim b/ftplugin/latex-box/common.vim index 7b62d21c..7df90020 100644 --- a/ftplugin/latex-box/common.vim +++ b/ftplugin/latex-box/common.vim @@ -215,7 +215,7 @@ function! LatexBox_View() if has('win32') let cmd = '!start /b' . cmd . ' >nul' else - let cmd = '!' . cmd . ' >/dev/null &' + let cmd = '!' . cmd . ' &>/dev/null &' endif silent execute cmd if !has("gui_running") |