aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/eval/funcs.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-08-14 18:30:37 +0800
committerGitHub <noreply@github.com>2022-08-14 18:30:37 +0800
commitc77cce615b1bdacd60f98ba5f41540535d142a1f (patch)
treedff6b8c1624de19df0cf6197ffa652419bf4e3af /src/nvim/eval/funcs.c
parentc96020b2bf671995a3c125d4db219fa1e9635a86 (diff)
downloadrneovim-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/eval/funcs.c')
-rw-r--r--src/nvim/eval/funcs.c1
1 files changed, 1 insertions, 0 deletions
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"