| View previous topic :: View next topic |
| Author |
Message |
Mauro Sacchetto Guest
|
Posted: Tue Oct 28, 2008 3:48 am Post subject: ortographic check in vim |
|
|
In my vimrc I've:
set spell spelllang=it
What does add the following line:
* let spell executable = "aspell" * ?
And if I don't put it, does anything change?
In this case, vim use aspell or ispell or other?
Thanx
M. |
|
| |
|
Back to top |
Tony Mechelynck Guest
|
Posted: Tue Oct 28, 2008 7:44 am Post subject: Re: ortographic check in vim |
|
|
On 27/10/08 23:48, Mauro Sacchetto wrote:
| Quote: | In my vimrc I've:
set spell spelllang=it
What does add the following line:
* let spell executable = "aspell" * ?
|
AFAICT, this line has invalid Vim syntax and should give an error if it
is neither commented-out nor part of a here-document for some
interpreted language (if your Vim supports it).
| Quote: | And if I don't put it, does anything change?
In this case, vim use aspell or ispell or other?
Thanx
M.
|
Vim doesn't use an external spell checker. Starting at Vim 7,
spell-checking is part of the Vim executable (if compiled with +syntax).
For details, see:
:help spell.txt
for the layman, and in particular
:help spell-file-format
If you are technical-minded, you may download the Vim sources and look
into the code of the spell module, src/spell.c
Best regards,
Tony.
--
hundred-and-one symptoms of being an internet addict:
232. You start conversations with, "Have you gotten a DSL line?" |
|
| |
|
Back to top |
Mauro Sacchetto Guest
|
Posted: Tue Oct 28, 2008 5:47 pm Post subject: Re: ortographic check in vim |
|
|
Tony Mechelynck wrote:
| Quote: | AFAICT, this line has invalid Vim syntax and should give an error if it
is neither commented-out nor part of a here-document for some
interpreted language (if your Vim supports it).
I don't receive errors, but even without it all works well. |
| Quote: | Vim doesn't use an external spell checker. Starting at Vim 7,
spell-checking is part of the Vim executable (if compiled with +syntax).
[cut] |
Ok, reading the help...
Thanx!
MS |
|
| |
|
Back to top |
|