Mercurial > vim
annotate src/proto/regexp.pro @ 7737:8bcce08171af
Added tag v7.4.1166 for changeset f2ddad8cbce768a52004566e77a62c4ed33277c9
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 24 Jan 2016 17:00:05 +0100 |
parents | 21b0a39d13ed |
children | bf204ab1ce7d |
rev | line source |
---|---|
7 | 1 /* regexp.c */ |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
6375
diff
changeset
|
2 int re_multiline(regprog_T *prog); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
6375
diff
changeset
|
3 int re_lookbehind(regprog_T *prog); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
6375
diff
changeset
|
4 char_u *skip_regexp(char_u *startp, int dirc, int magic, char_u **newp); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
6375
diff
changeset
|
5 int vim_regcomp_had_eol(void); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
6375
diff
changeset
|
6 void free_regexp_stuff(void); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
6375
diff
changeset
|
7 reg_extmatch_T *ref_extmatch(reg_extmatch_T *em); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
6375
diff
changeset
|
8 void unref_extmatch(reg_extmatch_T *em); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
6375
diff
changeset
|
9 char_u *regtilde(char_u *source, int magic); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
6375
diff
changeset
|
10 int vim_regsub(regmatch_T *rmp, char_u *source, char_u *dest, int copy, int magic, int backslash); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
6375
diff
changeset
|
11 int vim_regsub_multi(regmmatch_T *rmp, linenr_T lnum, char_u *source, char_u *dest, int copy, int magic, int backslash); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
6375
diff
changeset
|
12 char_u *reg_submatch(int no); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
6375
diff
changeset
|
13 list_T *reg_submatch_list(int no); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
6375
diff
changeset
|
14 regprog_T *vim_regcomp(char_u *expr_arg, int re_flags); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
6375
diff
changeset
|
15 void vim_regfree(regprog_T *prog); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
6375
diff
changeset
|
16 int vim_regexec_prog(regprog_T **prog, int ignore_case, char_u *line, colnr_T col); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
6375
diff
changeset
|
17 int vim_regexec(regmatch_T *rmp, char_u *line, colnr_T col); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
6375
diff
changeset
|
18 int vim_regexec_nl(regmatch_T *rmp, char_u *line, colnr_T col); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
6375
diff
changeset
|
19 long vim_regexec_multi(regmmatch_T *rmp, win_T *win, buf_T *buf, linenr_T lnum, colnr_T col, proftime_T *tm); |
7 | 20 /* vim: set ft=c : */ |