#!/bin/sh # # Spell a file & generate the syntax statements necessary to # highlight in mnv. Based on a program from Krishna Gadepalli # . # # I use the following mappings (in .mnvrc): # # noremap :so `mnvspell.sh %` # noremap :syntax clear SpellErrors # # Neil Schemenauer # March 1999 # updated 2008 Jul 17 by Bram # # Safe method for the temp file by Javier Fern�ndez-Sanguino_Pe�a INFILE=$1 tmp="${TMPDIR-/tmp}" OUTFILE=`mktemp -t mnvspellXXXXXX || tempfile -p mnvspell || echo none` # If the standard commands failed then create the file # since we cannot create a directory (we cannot remove it on exit) # create a file in the safest way possible. if test "$OUTFILE" = none; then OUTFILE=$tmp/mnvspell$$ [ -e $OUTFILE ] && { echo "Cannot use temporary file $OUTFILE, it already exists!"; exit 1 ; } (umask 077; touch $OUTFILE) fi # Note the copy of mnvspell cannot be deleted on exit since it is # used by mnv, otherwise it should do this: # trap "rm -f $OUTFILE" 0 1 2 3 9 11 13 15 # # local spellings # LOCAL_DICT=${LOCAL_DICT-$HOME/local/lib/local_dict} if [ -f $LOCAL_DICT ] then SPELL_ARGS="+$LOCAL_DICT" fi spell $SPELL_ARGS $INFILE | sort -u | awk ' { printf "syntax match SpellErrors \"\\<%s\\>\"\n", $0 ; } END { printf "highlight link SpellErrors ErrorMsg\n\n" ; } ' > $OUTFILE echo "!rm $OUTFILE" >> $OUTFILE echo $OUTFILE