From c77cce615b1bdacd60f98ba5f41540535d142a1f Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Sun, 14 Aug 2022 18:30:37 +0800 Subject: 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 --- src/nvim/eval/funcs.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/nvim/eval') diff --git a/src/nvim/eval/funcs.c b/src/nvim/eval/funcs.c index fe3c0f825e..349bb6c226 100644 --- a/src/nvim/eval/funcs.c +++ b/src/nvim/eval/funcs.c @@ -68,6 +68,7 @@ #include "nvim/sha256.h" #include "nvim/sign.h" #include "nvim/spell.h" +#include "nvim/spellsuggest.h" #include "nvim/state.h" #include "nvim/syntax.h" #include "nvim/tag.h" -- cgit