diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-09-27 12:41:56 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-09-27 12:41:56 +0200 |
commit | 46a426c9acfdd3d6c0fa134a17681634b9325bee (patch) | |
tree | 04524eaade951e753e388a890c287a4373683fb0 /src/README.md | |
parent | d2842ea60bd608b7f9ec93c77d3f36a8e3bf5fe9 (diff) | |
download | vim-git-46a426c9acfdd3d6c0fa134a17681634b9325bee.tar.gz |
patch 8.1.2081: the spell.c file is too bigv8.1.2081
Problem: The spell.c file is too big.
Solution: Move the code for spell suggestions to a separate file. (Yegappan
Lakshmanan, closes #4988)
Diffstat (limited to 'src/README.md')
-rw-r--r-- | src/README.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/README.md b/src/README.md index b5ee8b571..b08f0b493 100644 --- a/src/README.md +++ b/src/README.md @@ -69,7 +69,9 @@ screen.c | lower level screen functions search.c | pattern searching session.c | sessions and views sign.c | signs -spell.c | spell checking +spell.c | spell checking core +spellfile.c | spell file handling +spellsuggest.c | spell correction suggestions syntax.c | syntax and other highlighting tag.c | tags term.c | terminal handling, termcap codes |