comparison src/proto/spell.pro @ 625:81fe2ccc1207 v7.0179

updated for version 7.0179
author vimboss
date Thu, 12 Jan 2006 23:22:24 +0000
parents e321639cfa3e
children 2fae45239fb3
comparison
equal deleted inserted replaced
624:91e7d4a7b3b0 625:81fe2ccc1207
1 /* spell.c */ 1 /* spell.c */
2 int spell_check __ARGS((win_T *wp, char_u *ptr, hlf_T *attrp, int *capcol)); 2 int spell_check __ARGS((win_T *wp, char_u *ptr, hlf_T *attrp, int *capcol, int docount));
3 int spell_move_to __ARGS((win_T *wp, int dir, int allwords, int curline, hlf_T *attrp)); 3 int spell_move_to __ARGS((win_T *wp, int dir, int allwords, int curline, hlf_T *attrp));
4 void spell_cat_line __ARGS((char_u *buf, char_u *line, int maxlen)); 4 void spell_cat_line __ARGS((char_u *buf, char_u *line, int maxlen));
5 char_u *did_set_spelllang __ARGS((buf_T *buf)); 5 char_u *did_set_spelllang __ARGS((buf_T *buf));
6 void spell_free_all __ARGS((void)); 6 void spell_free_all __ARGS((void));
7 void spell_reload __ARGS((void)); 7 void spell_reload __ARGS((void));
12 void spell_add_word __ARGS((char_u *word, int len, int bad, int index)); 12 void spell_add_word __ARGS((char_u *word, int len, int bad, int index));
13 void init_spell_chartab __ARGS((void)); 13 void init_spell_chartab __ARGS((void));
14 int spell_check_sps __ARGS((void)); 14 int spell_check_sps __ARGS((void));
15 void spell_suggest __ARGS((int count)); 15 void spell_suggest __ARGS((int count));
16 void ex_spellrepall __ARGS((exarg_T *eap)); 16 void ex_spellrepall __ARGS((exarg_T *eap));
17 void spell_suggest_list __ARGS((garray_T *gap, char_u *word, int maxcount, int need_cap)); 17 void spell_suggest_list __ARGS((garray_T *gap, char_u *word, int maxcount, int need_cap, int interactive));
18 char_u *eval_soundfold __ARGS((char_u *word)); 18 char_u *eval_soundfold __ARGS((char_u *word));
19 void ex_spelldump __ARGS((exarg_T *eap)); 19 void ex_spelldump __ARGS((exarg_T *eap));
20 char_u *spell_to_word_end __ARGS((char_u *start, buf_T *buf)); 20 char_u *spell_to_word_end __ARGS((char_u *start, buf_T *buf));
21 int spell_word_start __ARGS((int startcol)); 21 int spell_word_start __ARGS((int startcol));
22 void spell_expand_check_cap __ARGS((colnr_T col)); 22 void spell_expand_check_cap __ARGS((colnr_T col));