Update of /cvsroot/vim-latex/vimfiles/ftplugin/tex
In directory sc8-pr-cvs1:/tmp/cvs-serv25567
Modified Files:
texviewer.vim
Log Message:
lack of <SID> before PromptForCompletion call
Index: texviewer.vim
===================================================================
RCS file: /cvsroot/vim-latex/vimfiles/ftplugin/tex/texviewer.vim,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** texviewer.vim 25 Apr 2003 20:41:26 -0000 1.13
--- texviewer.vim 8 May 2003 08:17:01 -0000 1.14
***************
*** 468,472 ****
let common_completion_prompt =
\ Tex_CreatePrompt(g:Tex_completion_{a:texcommand}, 2, ',') . "\n" .
! \ 'Enter number or completion : '
let inp = input(a:ask."\n".common_completion_prompt)
--- 468,472 ----
let common_completion_prompt =
\ Tex_CreatePrompt(g:Tex_completion_{a:texcommand}, 2, ',') . "\n" .
! \ 'Enter number or completion: '
let inp = input(a:ask."\n".common_completion_prompt)
***************
*** 483,487 ****
"
function! s:Tex_DoCompletion(texcommand)
! let completion = PromptForCompletion(a:texcommand,'Choose a completion to insert: ')
if completion != ''
return completion
--- 483,487 ----
"
function! s:Tex_DoCompletion(texcommand)
! let completion = <SID>PromptForCompletion(a:texcommand,'Choose a completion to insert: ')
if completion != ''
return completion
|