[Vim-latex-cvs] vimfiles/ftplugin/latex-suite compiler.vim,1.54,1.55
Brought to you by:
srinathava,
tmaas
From: <sri...@us...> - 2003-12-02 11:04:20
|
Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite In directory sc8-pr-cvs1:/tmp/cvs-serv21634 Modified Files: compiler.vim Log Message: Bug: \ls does not trigger search Why: tried to create the \ls mapping for the 'ls' mode. It should ofcourse be the normal ('n') mode. (Alex Jakushev) Index: compiler.vim =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/compiler.vim,v retrieving revision 1.54 retrieving revision 1.55 diff -C2 -d -r1.54 -r1.55 *** compiler.vim 30 Nov 2003 09:49:51 -0000 1.54 --- compiler.vim 2 Dec 2003 11:04:17 -0000 1.55 *************** *** 746,750 **** call Tex_MakeMap(s:ml."ll", "<Plug>Tex_Compile", 'v', '<buffer>') call Tex_MakeMap(s:ml."lv", "<Plug>Tex_View", 'n', '<buffer>') ! call Tex_MakeMap(s:ml."ls", "<Plug>Tex_ForwardSearch", 'ls', '<buffer>') endfunction " }}} --- 746,750 ---- call Tex_MakeMap(s:ml."ll", "<Plug>Tex_Compile", 'v', '<buffer>') call Tex_MakeMap(s:ml."lv", "<Plug>Tex_View", 'n', '<buffer>') ! call Tex_MakeMap(s:ml."ls", "<Plug>Tex_ForwardSearch", 'n', '<buffer>') endfunction " }}} |