I rarely think about using a spell-checking program: I've always thought I was fine reading what I wrote and fixing any mistakes myself. I can spell. But the other day, reading back a short blog post (again) I noticed a couple of errors I should have seen earlier. I could easily have "published" them. This made me think about a vim spell-checker.
It turns out there is a very easy way to do a spell-check in vim:
:set spell
This highlights words considered misspelled. There are keys to jump between them and
also to pop open a list of suggestions (see: :h spell
).
A very useful tool on occasion. I must remember to use it before pushing anything out to the world!