Vim spell checker

spell-checkingvim

Is there a way to spell check a file using vim?

Best Answer

If you have a spell checker installed on your system, vim will usually find it. If not you will need to install ispell, aspell, hunspell or a similar system as well as support files for the language you want to check.

:set spell

Here is an answer on StackOverflow with keybindings and also a quick little tutorial for usage.

Related Question