Re: [Vim-latex-cvs] vimfiles/ftplugin/latex-suite packages.vim,1.20,1.21
Brought to you by:
srinathava,
tmaas
From: Srinath A. <sr...@fa...> - 2003-01-15 01:13:01
|
On Tue, 14 Jan 2003, Mikolaj Machowski wrote: > On Tue, Jan 14, 2003 at 11:24:55AM -0800, Srinath Avadhanula wrote: > > Well, a quick overview of your changes to envmacros.vim reveals the > > following code: > > if !exists('s:common_com_prompt') > > call SetUpCommandPrompt() > > endif > > in PromptForCommand()... > > Which ofcourse means that s:common_com_prompt is initialized only once! > > But even commenting if construction behaviour is still the same... I was trying to debug this... Although I haven't debugged it, I am very curious why you use s: variables at various places in the code... For instance the s:Tex_LookForCommand is used only in Tex_pack_all(), so you should use just a function local variable (no prefix). Are you planning to use this later? Using s: variables makes code look very suspicious... Anyway, I'll release a new version now... Srinath |