[Vim-latex-cvs] vimfiles/ftplugin/latex-suite texmenuconf.vim,1.13,1.14
Brought to you by:
srinathava,
tmaas
From: <mi...@us...> - 2003-05-28 11:25:44
|
Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite In directory sc8-pr-cvs1:/tmp/cvs-serv3924 Modified Files: texmenuconf.vim Log Message: replace \\ in TeX-Suite menu with mapleader value - it often cause problems if someone change it in other places Index: texmenuconf.vim =================================================================== RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/texmenuconf.vim,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** texmenuconf.vim 19 May 2003 14:51:19 -0000 1.13 --- texmenuconf.vim 28 May 2003 11:11:16 -0000 1.14 *************** *** 34,46 **** " menus for compiling / viewing etc. ! exec 'anoremenu 80.30 '.s:mainmenuname.'&Compile<tab>\\ll'. \' :silent! call RunLaTeX()<CR>' ! exec 'vnoremenu 80.35 '.s:mainmenuname.'Compile&Part<tab>\\lc'. \' :call Tex_PartCompilation("f","l","v")<CR>' ! exec 'anoremenu 80.40 '.s:mainmenuname.'&View<tab>\\lv'. \' :silent! call ViewLaTeX("all")<CR>' ! exec 'anoremenu 80.45 '.s:mainmenuname.'Vi&ewPart<tab>\\lp'. \' :silent! call ViewLaTeX("part")<CR>' ! exec 'anoremenu 80.50 '.s:mainmenuname.'&Search<tab>\\ls'. \' :silent! call ForwardSearchLaTeX()<CR>' exec 'anoremenu 80.60 '.s:mainmenuname.'&Target\ Format<tab>:TTarget'. --- 34,46 ---- " menus for compiling / viewing etc. ! exec 'anoremenu 80.30 '.s:mainmenuname.'&Compile<tab>'.mapleader.'ll'. \' :silent! call RunLaTeX()<CR>' ! exec 'vnoremenu 80.35 '.s:mainmenuname.'Compile&Part<tab>'.mapleaer.'lc'. \' :call Tex_PartCompilation("f","l","v")<CR>' ! exec 'anoremenu 80.40 '.s:mainmenuname.'&View<tab>'.mapleader.'lv'. \' :silent! call ViewLaTeX("all")<CR>' ! exec 'anoremenu 80.45 '.s:mainmenuname.'Vi&ewPart<tab>'.mapleader.'lp'. \' :silent! call ViewLaTeX("part")<CR>' ! exec 'anoremenu 80.50 '.s:mainmenuname.'&Search<tab>'.mapleader.'ls'. \' :silent! call ForwardSearchLaTeX()<CR>' exec 'anoremenu 80.60 '.s:mainmenuname.'&Target\ Format<tab>:TTarget'. *************** *** 64,68 **** " refreshing folds if g:Tex_Folding ! exec 'anoremenu 80.120 '.s:mainmenuname.'&Refresh\ Folds<tab>\\rf'. \' :call MakeTexFolds(1)<CR>' exec 'anoremenu 80.130 '.s:mainmenuname.'-sepsuite2- :' --- 64,68 ---- " refreshing folds if g:Tex_Folding ! exec 'anoremenu 80.120 '.s:mainmenuname.'&Refresh\ Folds<tab>'.mapleaer.'rf'. \' :call MakeTexFolds(1)<CR>' exec 'anoremenu 80.130 '.s:mainmenuname.'-sepsuite2- :' |