diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2013-10-07 11:07:27 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2013-10-07 11:07:27 +0200 |
commit | e108a087b4a5a3acb55786643e5289a64c8b0c60 (patch) | |
tree | f0be0885c7076f64373a127acfd97e9bce6b70a2 /ftplugin | |
parent | b3257271dbd3075507db3e8ad2e76571901c969d (diff) | |
download | vim-polyglot-e108a087b4a5a3acb55786643e5289a64c8b0c60.tar.gz vim-polyglot-e108a087b4a5a3acb55786643e5289a64c8b0c60.zip |
Update latex, html, ruby, c, cpp
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") |