comparison runtime/doc/spell.txt @ 1622:149d8b46404c

updated for version 7.2a
author vimboss
date Tue, 24 Jun 2008 22:09:24 +0000
parents c63e66bc43ce
children 0b796e045c42
comparison
equal deleted inserted replaced
1621:82b5078be2dd 1622:149d8b46404c
1 *spell.txt* For Vim version 7.1. Last change: 2007 May 07 1 *spell.txt* For Vim version 7.2a. Last change: 2008 Jun 21
2 2
3 3
4 VIM REFERENCE MANUAL by Bram Moolenaar 4 VIM REFERENCE MANUAL by Bram Moolenaar
5 5
6 6
19 Note: There also is a vimspell plugin. If you have it you can do ":help 19 Note: There also is a vimspell plugin. If you have it you can do ":help
20 vimspell" to find about it. But you will probably want to get rid of the 20 vimspell" to find about it. But you will probably want to get rid of the
21 plugin and use the 'spell' option instead, it works better. 21 plugin and use the 'spell' option instead, it works better.
22 22
23 ============================================================================== 23 ==============================================================================
24 1. Quick start *spell-quickstart* 24 1. Quick start *spell-quickstart* *E756*
25 25
26 This command switches on spell checking: > 26 This command switches on spell checking: >
27 27
28 :setlocal spell spelllang=en_us 28 :setlocal spell spelllang=en_us
29 29
44 don't release the right mouse button until the menu appears, otherwise it 44 don't release the right mouse button until the menu appears, otherwise it
45 won't work. 45 won't work.
46 46
47 To search for the next misspelled word: 47 To search for the next misspelled word:
48 48
49 *]s* *E756* 49 *]s*
50 ]s Move to next misspelled word after the cursor. 50 ]s Move to next misspelled word after the cursor.
51 A count before the command can be used to repeat. 51 A count before the command can be used to repeat.
52 'wrapscan' applies. 52 'wrapscan' applies.
53 53
54 *[s* 54 *[s*
617 SPELL FILE MISSING *spell-SpellFileMissing* *spellfile.vim* 617 SPELL FILE MISSING *spell-SpellFileMissing* *spellfile.vim*
618 618
619 If the spell file for the language you are using is not available, you will 619 If the spell file for the language you are using is not available, you will
620 get an error message. But if the "spellfile.vim" plugin is active it will 620 get an error message. But if the "spellfile.vim" plugin is active it will
621 offer you to download the spell file. Just follow the instructions, it will 621 offer you to download the spell file. Just follow the instructions, it will
622 ask you where to write the file. 622 ask you where to write the file (there must be a writable directory in
623 'runtimepath' for this).
623 624
624 The plugin has a default place where to look for spell files, on the Vim ftp 625 The plugin has a default place where to look for spell files, on the Vim ftp
625 server. If you want to use another location or another protocol, set the 626 server. If you want to use another location or another protocol, set the
626 g:spellfile_URL variable to the directory that holds the spell files. The 627 g:spellfile_URL variable to the directory that holds the spell files. The
627 |netrw| plugin is used for getting the file, look there for the specific 628 |netrw| plugin is used for getting the file, look there for the specific