aboutsummaryrefslogtreecommitdiff
path: root/runtime/tools/vimspell.txt
diff options
context:
space:
mode:
authorMarco Hinz <mh.codebro@gmail.com>2015-04-14 12:28:31 +0200
committerJustin M. Keyes <justinkz@gmail.com>2015-04-14 17:49:37 -0400
commita86193d88edda899dd9859c21554fd6e17cdcb3e (patch)
tree3fd3cf69d82081c00f317620e11984e1d9d9bedd /runtime/tools/vimspell.txt
parentb47ea5fcdefb2ce33bae3d61d79310646aa8d1a1 (diff)
downloadrneovim-a86193d88edda899dd9859c21554fd6e17cdcb3e.tar.gz
rneovim-a86193d88edda899dd9859c21554fd6e17cdcb3e.tar.bz2
rneovim-a86193d88edda899dd9859c21554fd6e17cdcb3e.zip
Remove runtime/tools/ #2426
This directory contains old (at least 10+ years) scripts that mainly filter output of other old programs to make them conformant with an 'errorformat' from 10+ years ago.
Diffstat (limited to 'runtime/tools/vimspell.txt')
-rw-r--r--runtime/tools/vimspell.txt22
1 files changed, 0 insertions, 22 deletions
diff --git a/runtime/tools/vimspell.txt b/runtime/tools/vimspell.txt
deleted file mode 100644
index 2842af7bd8..0000000000
--- a/runtime/tools/vimspell.txt
+++ /dev/null
@@ -1,22 +0,0 @@
-vimspell.sh
-===========
-
-This is a simple script to spell check a file and generate the syntax
-statements necessary to highlight the errors in vim. It is based on a
-similar program by Krishna Gadepalli <krishna@stdavids.picker.com>.
-
-To use this script, first place it in a directory in your path. Next,
-you should add some convenient key mappings. I use the following (in
-.vimrc):
-
- noremap <F8> :so `vimspell.sh %`<CR><CR>
- noremap <F7> :syntax clear SpellErrors<CR>
-
-This program requires the old Unix "spell" command. On my Debian
-system, "spell" is a wrapper around "ispell". For better security,
-you should uncomment the line in the script that uses "tempfile" to
-create a temporary file. As all systems don't have "tempfile" the
-insecure "pid method" is used.
-
-
- Neil Schemenauer <nascheme@ucalgary.ca>