Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23774
Modified Files:
main.vim texrc texviewer.vim
Log Message:
Bug: Typing a <bs> in insert mode triggers the error:
>>Error detected while processing
>>function <SNR> 25_SmartBS:
>>
>>line 2:
>>
>>E55: Unmatched \\)
(Alp ATICI)
Why: A faulty move of code from main.vim to texrc.
Index: main.vim
===================================================================
RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/main.vim,v
retrieving revision 1.67
retrieving revision 1.68
diff -C2 -d -r1.67 -r1.68
*** main.vim 9 Jun 2004 20:59:39 -0000 1.67
--- main.vim 13 Jun 2004 18:12:40 -0000 1.68
***************
*** 606,610 ****
" keep that as a stable point.
function! Tex_Version()
! return "Latex-Suite: version 1.6.02"
endfunction
--- 606,610 ----
" keep that as a stable point.
function! Tex_Version()
! return "Latex-Suite: version 1.6.03"
endfunction
Index: texrc
===================================================================
RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/texrc,v
retrieving revision 1.44
retrieving revision 1.45
diff -C2 -d -r1.44 -r1.45
*** texrc 6 Jun 2004 23:21:25 -0000 1.44
--- texrc 13 Jun 2004 18:12:40 -0000 1.45
***************
*** 441,444 ****
--- 441,445 ----
" diacritics
TexLet g:Tex_SmartBSPattern =
+ \ '\(' .
\ "\\\\[\"^'=v]{\\S}" . '\|' .
\ "\\\\[\"^'=]\\S" . '\|' .
Index: texviewer.vim
===================================================================
RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/texviewer.vim,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** texviewer.vim 22 May 2004 01:26:31 -0000 1.7
--- texviewer.vim 13 Jun 2004 18:12:40 -0000 1.8
***************
*** 71,75 ****
let s:type = substitute(s:curline, pattern, '\1', 'e')
let s:typeoption = substitute(s:curline, pattern, '\2', 'e')
! call Tex_Debug('s:type = '.s:type.', typeoption = '.s:typeoption, 'view')
endif
--- 71,75 ----
let s:type = substitute(s:curline, pattern, '\1', 'e')
let s:typeoption = substitute(s:curline, pattern, '\2', 'e')
! call Tex_Debug('Tex_Complete: s:type = '.s:type.', typeoption = '.s:typeoption, 'view')
endif
|