From d3c0a50477970bb8bd560d499fcf12305b4a7892 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sun, 28 Aug 2016 15:58:31 -0400 Subject: Add English spell files Whenever I tried to change my 'spelllang' to French, I would get an error. :set spelllang=fr :set spell resulted in: E763: Word characters differ between spell files These posts explain the issue: http://stackoverflow.com/questions/14802136/word-characters-differ-between-spell-files-e763#14803439 https://groups.google.com/forum/#!topic/vim_dev/7HTs6kIKnPQ/discussion The problem stems from the English spellfiles Vim was using. Since I use the system Vim installed on Mac OS X 10.8.5, the spellfiles were out of date and caused the error. To fix the error, I've downloaded the latest (as of today) English spellfiles into my `.vim`. Vim will use these instead of the system spellfiles. In order to download these new spellfiles, I followed these steps: $ cd $VIMRUNTIME $ sudo chmod 000 spell/ $ vim : set spell : " Follow the download prompts : quit $ sudo chmod 755 spell/ --- spell/en.utf-8.spl | Bin 0 -> 609337 bytes spell/en.utf-8.sug | Bin 0 -> 596961 bytes 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 spell/en.utf-8.spl create mode 100644 spell/en.utf-8.sug (limited to 'spell') diff --git a/spell/en.utf-8.spl b/spell/en.utf-8.spl new file mode 100644 index 0000000..83b9b8f Binary files /dev/null and b/spell/en.utf-8.spl differ diff --git a/spell/en.utf-8.sug b/spell/en.utf-8.sug new file mode 100644 index 0000000..bbdf36a Binary files /dev/null and b/spell/en.utf-8.sug differ -- cgit v1.2.3