[Vim-latex-cvs] vimfiles/plugin imaps.vim,1.11,1.12
Brought to you by:
srinathava,
tmaas
From: <ma...@us...> - 2002-12-22 14:12:05
|
Update of /cvsroot/vim-latex/vimfiles/plugin In directory sc8-pr-cvs1:/tmp/cvs-serv20094/plugin Modified Files: imaps.vim Log Message: I modified s:TexQuotes() so that empty quotation marks add place holders: by default, "``''<++>" . This does not yet work, and I think the problem is in IMAP_Jumpfunc(). I fixed one error in this function; I am still working on it. Index: imaps.vim =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/plugin/imaps.vim,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** imaps.vim 22 Dec 2002 03:39:06 -0000 1.11 --- imaps.vim 22 Dec 2002 14:12:02 -0000 1.12 *************** *** 8,12 **** " while preserving filetype indentation. " ! " Last Change: Sat Dec 21 10:00 PM 2002 EST " " Documentation: {{{ --- 8,12 ---- " while preserving filetype indentation. " ! " Last Change: Sun Dec 22 08:00 AM 2002 EST " " Documentation: {{{ *************** *** 358,362 **** " current cursor position does not contain a placeholder character, then " search for the placeholder characters. ! if !a:inclusive || strpart(getline('.'), col('.')-1) !~ '\V^'.phsUser let searchString = '\V'.phsUser.'\.\{-}'.pheUser endif --- 358,362 ---- " current cursor position does not contain a placeholder character, then " search for the placeholder characters. ! if !a:inclusive || strpart(getline('.'), col('.')-1) !~ '\V\^'.phsUser let searchString = '\V'.phsUser.'\.\{-}'.pheUser endif |