Created
May 31, 2017 15:28
-
-
Save amattheisen/19d88a00d920bf40da82e937cb199aa3 to your computer and use it in GitHub Desktop.
vim spell checking
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
How to highlighting misspellings/rare-words/capitalization-errors in VIM | |
Enable/Disable | |
:set spell spelllang=en_us | |
:set nospell | |
Commands: | |
]s Move to next misspelled word | |
[s Move to previous misspelled word | |
z= Suggest spelling correction | |
zg Add a word to the dictionary | |
zw Mark a word as incorrect | |
Reference: | |
https://www.linux.com/learn/using-spell-checking-vim |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment