Vim Tips Wiki
m (Reverted edits by Emprego.curitiba (talk | block) to last version by JohnBot)
Tag: rollback
No edit summary
Tags: Visual edit apiedit
Line 30: Line 30:
 
</pre>
 
</pre>
   
For a list of English spelling corrections you can use immediately, check out {{script|id=2429|text=autocorrect.vim}}.
+
For a list of English spelling corrections you can use immediately ([http://adaeko.blogspot.com eko wahyudi]), check out {{script|id=2429|text=autocorrect.vim}}.
   
 
==Comments==
 
==Comments==

Revision as of 02:17, 22 April 2015

Tip 1382 Printable Monobook Previous Next

created 2006 · complexity basic · author Peter Hodge · version 6.0


Vim's abbreviation feature also doubles as an on-the-fly spell checker. Simply create abbreviations for words you misspell often and Vim will fix them for you:

iabbrev mispell misspell
iabbrev funciton function
iabbrev functiton function
iabbrev fucntion function
iabbrev funtion function
iabbrev erturn return
iabbrev retunr return
iabbrev reutrn return
iabbrev reutn return
iabbrev queyr query
iabbrev htis this
iabbrev foreahc foreach
iabbrev forech foreach

For a list of English spelling corrections you can use immediately (eko wahyudi), check out autocorrect.vim.

Comments

Alternately:

set dict=/usr/dict/words
set spell

and turn completion on.