diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-08-14 18:30:37 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-14 18:30:37 +0800 |
commit | c77cce615b1bdacd60f98ba5f41540535d142a1f (patch) | |
tree | dff6b8c1624de19df0cf6197ffa652419bf4e3af /src/nvim/normal.c | |
parent | c96020b2bf671995a3c125d4db219fa1e9635a86 (diff) | |
download | rneovim-c77cce615b1bdacd60f98ba5f41540535d142a1f.tar.gz rneovim-c77cce615b1bdacd60f98ba5f41540535d142a1f.tar.bz2 rneovim-c77cce615b1bdacd60f98ba5f41540535d142a1f.zip |
vim-patch:8.1.2081: the spell.c file is too big (#19767)
Problem: The spell.c file is too big.
Solution: Move the code for spell suggestions to a separate file. (Yegappan
Lakshmanan, closes vim/vim#4988)
https://github.com/vim/vim/commit/46a426c9acfdd3d6c0fa134a17681634b9325bee
Diffstat (limited to 'src/nvim/normal.c')
-rw-r--r-- | src/nvim/normal.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/normal.c b/src/nvim/normal.c index b293841bb0..e6fa9e76c6 100644 --- a/src/nvim/normal.c +++ b/src/nvim/normal.c @@ -58,6 +58,7 @@ #include "nvim/search.h" #include "nvim/spell.h" #include "nvim/spellfile.h" +#include "nvim/spellsuggest.h" #include "nvim/state.h" #include "nvim/strings.h" #include "nvim/syntax.h" |