clarifying and polishing

This commit is contained in:
Reed Esau
2014-01-20 23:52:54 -07:00
parent cde436d428
commit c041baa195

View File

@@ -9,9 +9,9 @@ the most common of these typos and correct each upon hitting the space bar
Features of this plugin: Features of this plugin:
* Focused on the most common of typos * Focused on the most common of typos
* Pure Vimscript where mechanism is `iabbrev` * Pure Vimscript using the efficient `iabbrev`
* Included entries limited to a maximum of 300 for fast loading * Included auto-correct entries limited to 300 for fast loading
* Buffer-scoped behavior * Buffer-scoped behavior (wont touch global settings)
Note that this plugin is not intended to be a replacement for teh spell Note that this plugin is not intended to be a replacement for teh spell
checker in Vim. Its best used with spell-check enabled. checker in Vim. Its best used with spell-check enabled.
@@ -64,21 +64,21 @@ where the value is a list of the common misspellings for the key.
The corrections you provide will be in addition to the defaults. Where The corrections you provide will be in addition to the defaults. Where
theres a conflict, your correction will prevail. theres a conflict, your correction will prevail.
## Criteria to modify defaults ## Criteria to modify default entries
Note that the number of default entries will be limited to 300 for fast Note that the number of default entries will be limited to 300 for fast
loading. loading.
Suggestions for improving the defaults are welcome, but good evidence is Suggestions for improving the defaults are welcome, but good evidence is
needed that a suggested typo is more common than one we will drop. needed that a suggested auto-correct entry is more common than the one it
will replace.
## Related projects ## Related projects
For a more comprehensive approach with support for _many_ more words, For a more comprehensive approach with _many_ more entries, check out:
check out:
* [wordlist.vim](https://github.com/vim-scripts/wordlist.vim) - 800+ entries * [wordlist.vim](https://github.com/vim-scripts/wordlist.vim) - nearly 800 entries
* [vim-autocorrect](https://github.com/panozzaj/vim-autocorrect) - 12K+ entries! * [vim-autocorrect](https://github.com/panozzaj/vim-autocorrect) - over 12K entries!
A warning that larger entry counts make for slower loading. A warning that larger entry counts make for slower loading.