[Vim-latex-cvs] vimfiles/ftplugin/latex-suite compiler.vim,1.31,1.32
Brought to you by:
srinathava,
tmaas
From: <mi...@us...> - 2003-06-01 23:23:46
|
Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite In directory sc8-pr-cvs1:/tmp/cvs-serv5330 Modified Files: compiler.vim Log Message: refresh screen after View and Compile -redraw! - suggestion from Jess Thrysoee Index: compiler.vim =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/compiler.vim,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** compiler.vim 29 May 2003 12:48:13 -0000 1.31 --- compiler.vim 1 Jun 2003 23:23:43 -0000 1.32 *************** *** 127,130 **** --- 127,131 ---- exec 'make '.g:tfile exe 'lcd '.curdir + redraw! else let mainfname = Tex_GetMainFileName() *************** *** 149,152 **** --- 150,154 ---- exec 'make '.mainfname endif + redraw! endif *************** *** 242,245 **** --- 244,248 ---- endif endif + redraw! else if a:size == "all" *************** *** 248,251 **** --- 251,255 ---- exec '!'.s:viewer.' '.g:tfile.'.'.s:target.' &' endif + redraw! endif end *************** *** 305,308 **** --- 309,313 ---- exec '!kdvi --unique file:'.mainfname.'.dvi\#src:'.line('.').Tex_GetMainFileName(":p:t:r").' &' endif + redraw! end |