Re: Python/Ruby completion requires language interface ?

2006-09-28 Thread Alexey I. Froloff
* A.J.Mechelynck antoine.mechelynck@ [060928 01:06]: It surprised me because, after all, Vim doesn't need to be a C compiler to run ccomplete.vim, But it still needs tags information, generated bu ctags, for example... -- Regards, Sir Raorn. signature.asc Description: Digital signature

Python/Ruby completion requires language interface ?

2006-09-27 Thread A.J.Mechelynck
Hello developers, I notice that the scripts autoload/pythoncomplete.vim and autoload/rubycomplete.vim terminate early and with error if the corresponding interface is not compiled-in. Is that intentional? I would expect to be able to _edit_ (for instance) a python script even on a Vim version

Re: Python/Ruby completion requires language interface ?

2006-09-27 Thread Mikolaj Machowski
Dnia środa, 27 września 2006 11:35, A.J.Mechelynck napisał: I notice that the scripts autoload/pythoncomplete.vim and autoload/rubycomplete.vim terminate early and with error if the corresponding interface is not compiled-in. Is that intentional? I would expect to be able to _edit_ (for

Re: Python/Ruby completion requires language interface ?

2006-09-27 Thread Stefan Walk
The script terminates, not vim... if !has('python') echo Error: Required vim compiled with +python finish endif is right at the start. Regards, Stefan

Re: Python/Ruby completion requires language interface ?

2006-09-27 Thread Mikolaj Machowski
Dnia środa, 27 września 2006 14:27, Stefan Walk napisał: The script terminates, not vim... if !has('python') echo Error: Required vim compiled with +python finish endif is right at the start. It could at least degrade to syntax highlighting completion. m.

Re: Python/Ruby completion requires language interface ?

2006-09-27 Thread A.J.Mechelynck
Mark Guzman wrote: A.J.Mechelynck wrote: I notice that the scripts autoload/pythoncomplete.vim and autoload/rubycomplete.vim terminate early and with error if the corresponding interface is not compiled-in. Is that intentional? I would expect to be able to _edit_ (for instance) a python script

Re: Python/Ruby completion requires language interface ?

2006-09-27 Thread Mark Guzman
A.J.Mechelynck wrote: Yes, I never said anything else: ...the scripts... terminate early and with error It surprised me because, after all, Vim doesn't need to be a C compiler to run ccomplete.vim, or a Web browser (hiding tags, the whole HEAD part, and OTOH showing clickable A HREF=...

Re: Python/Ruby completion requires language interface ?

2006-09-27 Thread Aaron Griffin
On 9/27/06, Mark Guzman [EMAIL PROTECTED] wrote: A.J.Mechelynck wrote: Yes, I never said anything else: ...the scripts... terminate early and with error It surprised me because, after all, Vim doesn't need to be a C compiler to run ccomplete.vim, or a Web browser (hiding tags, the whole