mirror of
https://github.com/neovim/neovim.git
synced 2025-10-06 18:06:30 +00:00

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)
46a426c9ac
10 lines
198 B
C
10 lines
198 B
C
#ifndef NVIM_SPELLSUGGEST_H
|
|
#define NVIM_SPELLSUGGEST_H
|
|
|
|
#include "nvim/garray.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "spellsuggest.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_SPELLSUGGEST_H
|