Spelling mistakes can be fixed by pointing the cursor on the misspelled word and pressing z= (a list appears and you can select correct word). But this will fix the mistake only once (on current word). This is not that much of us will want, most will be happy to do replacement in entire file. How can I do so?
Unsuccessful Attempt:
I got an idea of substitute that mistake with correct one (i.e. :%s/badspell/goodspell/g). But the bad part of this is, it is painful. First I need to (atleast) correct a word, then store bad spelling and corrected spelling in my buffer (brain), then write the command for substitution (chances are I will do mistake in writing bad spelling and good one.). Though its time taking too.
There's a similar question on StackOverflow which says I can solve my problem with doing :spellrepall after the correction. The only problem is I don't want to all this typing. I want to automate this everytime there is a spelling correction.
And don't suggest me about plugins.
nnoremap <F8> :spellrepall<CR>? – romainl Sep 27 '12 at 14:25readMyBrainAndDoWhatIMean()function hasn't been implemented yet in Vim. – Ingo Karkat Sep 27 '12 at 14:57:spellrepallstuff and want call it on appropriate event. – Santosh Kumar Sep 27 '12 at 15:01AcceptedSpellCorrectionevent. You'd have to remapz=, and issue the:spellrepallafter that. The difficulty is thatz=may query for the correction. I've actually done that, but 1. it's a complex plugin, 2. not yet published, 3. you don't want plugins. – Ingo Karkat Sep 27 '12 at 16:31