[Vim-latex-cvs] vimfiles/ftplugin/latex-suite folding.vim,1.16,1.17
Brought to you by:
srinathava,
tmaas
|
From: <sri...@us...> - 2003-11-30 09:52:18
|
Update of /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite
In directory sc8-pr-cvs1:/tmp/cvs-serv12376
Modified Files:
folding.vim
Log Message:
Use the new Tex_MakeMap function in main.vim
Index: folding.vim
===================================================================
RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/latex-suite/folding.vim,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** folding.vim 30 Nov 2003 02:43:01 -0000 1.16
--- folding.vim 30 Nov 2003 09:52:15 -0000 1.17
***************
*** 31,37 ****
endif
! if g:Tex_Folding && !hasmapto('<Plug>Tex_RefreshFolds')
! nmap <silent> <buffer> <Leader>rf <Plug>Tex_RefreshFolds
! endif
endfunction " }}}
--- 31,37 ----
endif
! let s:ml = exists('g:mapleader') ? g:mapleader : "\\"
!
! call Tex_MakeMap(s:ml."rf", "<Plug>Tex_RefreshFolds", 'n', '<silent> <buffer>')
endfunction " }}}
|