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/option.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/option.c')
-rw-r--r-- | src/nvim/option.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index 5e88ed98e8..da29d40b05 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -72,6 +72,7 @@ #include "nvim/screen.h" #include "nvim/spell.h" #include "nvim/spellfile.h" +#include "nvim/spellsuggest.h" #include "nvim/strings.h" #include "nvim/syntax.h" #include "nvim/ui.h" |