Re: if version >= 700 "?vim6.2 and for

2010-08-23 Thread Bee
On Aug 23, 8:28 am, Ben Fritz wrote: > On Aug 20, 1:33 pm, Bee <200...@calcentral.com> wrote: > > I have a .vimrc that is used for vim6.2 thru vim7.3 on Mac Terminal > > This works to eliminate errror messages for the older vim6.2: > > > if version >= 700 "?vim6.2 > > ... > > endif > > > EXCEPT wi

Re: if version >= 700 "?vim6.2 and for

2010-08-23 Thread Ben Fritz
On Aug 20, 1:33 pm, Bee <200...@calcentral.com> wrote: > I have a .vimrc that is used for vim6.2 thru vim7.3 on Mac Terminal > > This works to eliminate errror messages for the older vim6.2: > > if version >= 700 "?vim6.2 > ... > endif > > EXCEPT with a new script which has a FOR ... ENDFOR > > T

Re: if version >= 700 "?vim6.2 and for

2010-08-20 Thread Andy Wokula
Am 20.08.2010 20:33, schrieb Bee: I have a .vimrc that is used for vim6.2 thru vim7.3 on Mac Terminal This works to eliminate errror messages for the older vim6.2: if version>= 700 "?vim6.2 ... endif EXCEPT with a new script which has a FOR ... ENDFOR The ENDFOR seems to confused the IF. Is

if version >= 700 "?vim6.2 and for

2010-08-20 Thread Bee
I have a .vimrc that is used for vim6.2 thru vim7.3 on Mac Terminal This works to eliminate errror messages for the older vim6.2: if version >= 700 "?vim6.2 ... endif EXCEPT with a new script which has a FOR ... ENDFOR The ENDFOR seems to confused the IF. Is there a workaround? I suppose I cou