Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite
In directory sc8-pr-cvs1:/tmp/cvs-serv26496
Modified Files:
compiler.vim
Log Message:
- Do not use the :silent! in \ll etc even if has('gui') because
1. seeing all the "will rerun because .bbl file changed" etc is very
helpful.
2. More often that not, it prevents the user from being able to see bugs
which he can report.
I will go back to the original way if I receive comments otherwise.
- remove the <F10> map because latex-suite doesn't use it anymore.
Index: compiler.vim
===================================================================
RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/compiler.vim,v
retrieving revision 1.43
retrieving revision 1.44
diff -C2 -d -r1.43 -r1.44
*** compiler.vim 29 Aug 2003 02:29:35 -0000 1.43
--- compiler.vim 2 Sep 2003 07:05:59 -0000 1.44
***************
*** 556,583 ****
endfunction " }}}
" SetCompilerMaps: sets maps for compiling/viewing/searching {{{
! " " Description:
function! <SID>SetCompilerMaps()
if exists('b:Tex_doneCompilerMaps')
return
endif
! let b:Tex_doneCompilerMaps = 1
! " viewing/searching
! if !hasmapto('RunLaTeX')
! if has("gui")
! nnoremap <buffer> <Leader>ll :silent! call RunLaTeX()<cr>
! vnoremap <buffer> <Leader>ll :call Tex_PartCompile()<cr>
! nnoremap <buffer> <Leader>lv :silent! call ViewLaTeX()<cr>
! nnoremap <buffer> <Leader>ls :silent! call Tex_ForwardSearchLaTeX()<cr>
! else
! nnoremap <buffer> <Leader>ll :call RunLaTeX()<cr>
! vnoremap <buffer> <Leader>ll :call Tex_PartCompile()<cr>
! nnoremap <buffer> <Leader>lv :call ViewLaTeX()<cr>
! nnoremap <buffer> <Leader>ls :call Tex_ForwardSearchLaTeX()<cr>
! end
! end
! vnoremap <buffer> <silent> <Plug>Tex_PartCompile :call Tex_PartCompile()<CR>
! if !hasmapto('<Plug>Tex_PartCompilation',"v")
! vmap <buffer> <silent> <F10> <Plug>Tex_PartCompile
! endif
endif
--- 556,568 ----
endfunction " }}}
" SetCompilerMaps: sets maps for compiling/viewing/searching {{{
! " Description:
function! <SID>SetCompilerMaps()
if exists('b:Tex_doneCompilerMaps')
return
endif
! nnoremap <buffer> <Leader>ll :call RunLaTeX()<cr>
! vnoremap <buffer> <Leader>ll :call Tex_PartCompile()<cr>
! nnoremap <buffer> <Leader>lv :call ViewLaTeX()<cr>
! nnoremap <buffer> <Leader>ls :call Tex_ForwardSearchLaTeX()<cr>
endif
|