vim: update release.sh to vim 7.3
[msysgit/mtrensch.git] / share / vim / vim72 / tools / vimspell.txt
blob2842af7bd8c68a8e41857bf357d57b972cf9a2fd
1 vimspell.sh
2 ===========
4 This is a simple script to spell check a file and generate the syntax
5 statements necessary to highlight the errors in vim.  It is based on a
6 similar program by Krishna Gadepalli <krishna@stdavids.picker.com>.
8 To use this script, first place it in a directory in your path.  Next,
9 you should add some convenient key mappings.  I use the following (in
10 .vimrc):
12         noremap <F8> :so `vimspell.sh %`<CR><CR>
13         noremap <F7> :syntax clear SpellErrors<CR>
15 This program requires the old Unix "spell" command.  On my Debian
16 system, "spell" is a wrapper around "ispell".  For better security,
17 you should uncomment the line in the script that uses "tempfile" to
18 create a temporary file.  As all systems don't have "tempfile" the
19 insecure "pid method" is used.
22     Neil Schemenauer <nascheme@ucalgary.ca>