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/normal.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/nvim/normal.c') 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" -- cgit