Re: Vim7 auto-downloading spell dictionary

2006-06-15 Thread Steve Hall
From: Bram Moolenaar, Jun 15, 2006 8:53 AM > Steve Hall wrote: > > > > But now I'm noticing that it won't offer to download the file > > unless my username has permissions on the runtime /spell > > directory. Surely Vim doesn't expect that by default, do I need to > > create someplace in userland o

Re: Vim7 auto-downloading spell dictionary

2006-06-15 Thread Bram Moolenaar
Steve Hall wrote: > On Wed, 2006-06-14 at 15:28 +0200, Bram Moolenaar wrote: > > > > Then Vim should offer you to download a missing spell file. I can't > > guess why this doesn't happen for you... > > I figured out my main problem: I had a beta (unstable) runtime with a > bad URL. > > But now

Re: Vim7 auto-downloading spell dictionary

2006-06-15 Thread Steve Hall
On Wed, 2006-06-14 at 15:28 +0200, Bram Moolenaar wrote: > > Then Vim should offer you to download a missing spell file. I can't > guess why this doesn't happen for you... I figured out my main problem: I had a beta (unstable) runtime with a bad URL. But now I'm noticing that it won't offer to d

Re: Vim7 auto-downloading spell dictionary

2006-06-14 Thread Andrei A. Voropaev
On Wed, Jun 14, 2006 at 03:28:56PM +0200, Bram Moolenaar wrote: > Andrei Voropaev wrote: > > The document I'm trying to check is an HTML file, so maybe the the html > > coding somehow prevents spell checking? Actually I've just tried it. If > > I use spellcheck in a_file.txt, then it works. When I

Re: Vim7 auto-downloading spell dictionary

2006-06-14 Thread Bram Moolenaar
Andrei Voropaev wrote: > On Wed, Jun 14, 2006 at 12:19:11PM +0200, Bram Moolenaar wrote: > > > > Andrei A. Voropaev wrote: > > > Looks like on my system something is not configured properly. At least > > > when I tried to do spell check for russian, vim told me that I don't > > > have the dictio

Re: Vim7 auto-downloading spell dictionary

2006-06-14 Thread Andrei A. Voropaev
On Wed, Jun 14, 2006 at 12:19:11PM +0200, Bram Moolenaar wrote: > > Andrei A. Voropaev wrote: > > Looks like on my system something is not configured properly. At least > > when I tried to do spell check for russian, vim told me that I don't > > have the dictionary, but it didn't offer to download

Re: Vim7 auto-downloading spell dictionary

2006-06-14 Thread Bram Moolenaar
Andrei A. Voropaev wrote: > On Wed, Jun 14, 2006 at 10:37:45AM +0200, Bram Moolenaar wrote: > > > > Steve Hall wrote: > > > > > Does the vim7 automatic downloading of a new spellcheck dictionary > > > work as advertised in :help spellfile.vim? The command in help is: > > > > > > autocmd Spel

Re: Vim7 auto-downloading spell dictionary

2006-06-14 Thread Andrei A. Voropaev
On Wed, Jun 14, 2006 at 10:37:45AM +0200, Bram Moolenaar wrote: > > Steve Hall wrote: > > > Does the vim7 automatic downloading of a new spellcheck dictionary > > work as advertised in :help spellfile.vim? The command in help is: > > > > autocmd SpellFileMissing * call > > Download_spell_file(

Re: Vim7 auto-downloading spell dictionary

2006-06-14 Thread Bram Moolenaar
Steve Hall wrote: > Does the vim7 automatic downloading of a new spellcheck dictionary > work as advertised in :help spellfile.vim? The command in help is: > > autocmd SpellFileMissing * call > Download_spell_file(expand('')) > > but in spellfile.vim is: > > autocmd SpellFileMissing * call

Vim7 auto-downloading spell dictionary

2006-06-13 Thread Steve Hall
Does the vim7 automatic downloading of a new spellcheck dictionary work as advertised in :help spellfile.vim? The command in help is: autocmd SpellFileMissing * call Download_spell_file(expand('')) but in spellfile.vim is: autocmd SpellFileMissing * call spellfile#LoadFile(expand('')) I wa