Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20745
Modified Files:
packages.vim main.vim
Log Message:
Index: packages.vim
===================================================================
RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/packages.vim,v
retrieving revision 1.46
retrieving revision 1.47
diff -C2 -d -r1.46 -r1.47
*** packages.vim 11 Feb 2004 10:04:06 -0000 1.46
--- packages.vim 9 Jun 2004 20:59:39 -0000 1.47
***************
*** 75,83 ****
endif
" Return full list of dictionaries (separated with ,) for package in &rtp
! call Tex_Debug("searching for ".a:package." in dictionaries/ in &rtp", "pack")
let dictname = Tex_FindInRtp(a:package, 'dictionaries', ':p')
if dictname != ''
exe 'setlocal dict^=' . dictname
! call Tex_Debug('setlocal dict^=' . dictname, 'pack')
if g:Tex_package_supported !~ a:package
let g:Tex_package_supported = g:Tex_package_supported.','.a:package
--- 75,83 ----
endif
" Return full list of dictionaries (separated with ,) for package in &rtp
! call Tex_Debug("Tex_pack_check: searching for ".a:package." in dictionaries/ in &rtp", "pack")
let dictname = Tex_FindInRtp(a:package, 'dictionaries', ':p')
if dictname != ''
exe 'setlocal dict^=' . dictname
! call Tex_Debug('Tex_pack_check: setlocal dict^=' . dictname, 'pack')
if g:Tex_package_supported !~ a:package
let g:Tex_package_supported = g:Tex_package_supported.','.a:package
***************
*** 105,110 ****
" }}}
- " This function should go to main.vim for reuse with templates and macros.
- " I keep it here because want to do it in onefile patch.
" Tex_pack_updateall: updates the TeX-Packages menu {{{
" Description:
--- 105,108 ----
***************
*** 143,147 ****
exe 'split '.Tex_EscapeSpaces(fname)
else
! call Tex_Debug(':Tex_pack_updateall: split')
split
endif
--- 141,145 ----
exe 'split '.Tex_EscapeSpaces(fname)
else
! call Tex_Debug(':Tex_pack_updateall: split', 'pack')
split
endif
Index: main.vim
===================================================================
RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/main.vim,v
retrieving revision 1.66
retrieving revision 1.67
diff -C2 -d -r1.66 -r1.67
*** main.vim 9 Jun 2004 20:47:16 -0000 1.66
--- main.vim 9 Jun 2004 20:59:39 -0000 1.67
***************
*** 606,610 ****
" keep that as a stable point.
function! Tex_Version()
! return "Latex-Suite: version 1.6.01"
endfunction
--- 606,610 ----
" keep that as a stable point.
function! Tex_Version()
! return "Latex-Suite: version 1.6.02"
endfunction
|