Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19440/ftplugin/latex-suite
Modified Files:
brackets.vim main.vim
Log Message:
Change: <M-b> no longer upper-cases the character it encloses in \mathbf.
Also fix documentation to say that its <M-b>, not <M-m> which
encloses in \mathbf. (Jorge Scandaliaris)
Index: brackets.vim
===================================================================
RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/brackets.vim,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** brackets.vim 21 Jul 2004 19:01:03 -0000 1.2
--- brackets.vim 19 Nov 2005 18:00:01 -0000 1.3
***************
*** 47,51 ****
" Description:
function! Tex_MathBF()
! return "\<Left>\\mathbf{\<Right>}\<Esc>hvUla"
endfunction " }}}
" Tex_MathCal: enclose the previous letter/number in \mathcal {{{
--- 47,51 ----
" Description:
function! Tex_MathBF()
! return "\<Left>\\mathbf{\<Right>}"
endfunction " }}}
" Tex_MathCal: enclose the previous letter/number in \mathcal {{{
Index: main.vim
===================================================================
RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/main.vim,v
retrieving revision 1.79
retrieving revision 1.80
diff -C2 -d -r1.79 -r1.80
*** main.vim 25 Sep 2005 09:32:28 -0000 1.79
--- main.vim 19 Nov 2005 18:00:01 -0000 1.80
***************
*** 636,640 ****
" keep that as a stable point.
function! Tex_Version()
! return "Latex-Suite: version 1.6.14"
endfunction
--- 636,640 ----
" keep that as a stable point.
function! Tex_Version()
! return "Latex-Suite: version 1.6.15"
endfunction
|