forked from aniani/vim
Problem: The spell.c file is too big.
Solution: Move the code for spell suggestions to a separate file. (Yegappan
Lakshmanan, closes #4988)
6 lines
200 B
C
6 lines
200 B
C
/* spellsuggest.c */
|
|
int spell_check_sps(void);
|
|
void spell_suggest(int count);
|
|
void spell_suggest_list(garray_T *gap, char_u *word, int maxcount, int need_cap, int interactive);
|
|
/* vim: set ft=c : */
|