Mercurial > vim
comparison src/proto/spell.pro @ 499:08012a1ff8d4 v7.0137
updated for version 7.0137
author | vimboss |
---|---|
date | Thu, 25 Aug 2005 21:27:31 +0000 |
parents | f00f0af2a320 |
children | c6296b0ad9ea |
comparison
equal
deleted
inserted
replaced
498:f9ea3888b054 | 499:08012a1ff8d4 |
---|---|
1 /* spell.c */ | 1 /* spell.c */ |
2 int spell_check __ARGS((win_T *wp, char_u *ptr, int *attrp, int *capcol)); | 2 int spell_check __ARGS((win_T *wp, char_u *ptr, int *attrp, int *capcol)); |
3 int spell_move_to __ARGS((int dir, int allwords, int curline)); | 3 int spell_move_to __ARGS((win_T *wp, int dir, int allwords, int curline, int *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)); |
8 int spell_check_msm __ARGS((void)); | 8 int spell_check_msm __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)); |
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 int spell_word_start __ARGS((int startcol)); | 21 int spell_word_start __ARGS((int startcol)); |
21 int expand_spelling __ARGS((linenr_T lnum, int col, char_u *pat, char_u ***matchp)); | 22 int expand_spelling __ARGS((linenr_T lnum, int col, char_u *pat, char_u ***matchp)); |
22 /* vim: set ft=c : */ | 23 /* vim: set ft=c : */ |