Mercurial > vim
annotate src/proto/if_cscope.pro @ 18481:26256dcadd77 v8.1.2235
patch 8.1.2235: "C" with 'virtualedit' set does not include multi-byte char
Commit: https://github.com/vim/vim/commit/77ccc00340ed2598f7aa09716217e878665964fa
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Oct 31 03:21:25 2019 +0100
patch 8.1.2235: "C" with 'virtualedit' set does not include multi-byte char
Problem: "C" with 'virtualedit' set does not include multi-byte char.
Solution: Include the whole multi-byte char. (Nobuhiro Takasaki,
closes #5152)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 31 Oct 2019 03:30:03 +0100 |
parents | 5c8906f653f5 |
children | 05b240971884 |
rev | line source |
---|---|
7 | 1 /* if_cscope.c */ |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1858
diff
changeset
|
2 char_u *get_cscope_name(expand_T *xp, int idx); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1858
diff
changeset
|
3 void set_context_in_cscope_cmd(expand_T *xp, char_u *arg, cmdidx_T cmdidx); |
10373
bd674706408a
commit https://github.com/vim/vim/commit/d4db7719bdfbc54df396eac08d8cbb2389feacf4
Christian Brabandt <cb@256bit.org>
parents:
7668
diff
changeset
|
4 void ex_cscope(exarg_T *eap); |
bd674706408a
commit https://github.com/vim/vim/commit/d4db7719bdfbc54df396eac08d8cbb2389feacf4
Christian Brabandt <cb@256bit.org>
parents:
7668
diff
changeset
|
5 void ex_scscope(exarg_T *eap); |
bd674706408a
commit https://github.com/vim/vim/commit/d4db7719bdfbc54df396eac08d8cbb2389feacf4
Christian Brabandt <cb@256bit.org>
parents:
7668
diff
changeset
|
6 void ex_cstag(exarg_T *eap); |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1858
diff
changeset
|
7 int cs_fgets(char_u *buf, int size); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1858
diff
changeset
|
8 void cs_free_tags(void); |
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1858
diff
changeset
|
9 void cs_print_tags(void); |
17986
5c8906f653f5
patch 8.1.1989: the evalfunc.c file is still too big
Bram Moolenaar <Bram@vim.org>
parents:
10373
diff
changeset
|
10 void f_cscope_connection(typval_T *argvars, typval_T *rettv); |
7668
21b0a39d13ed
commit https://github.com/vim/vim/commit/ef26954a35207c3f17d6ed35d9a40c918d974892
Christian Brabandt <cb@256bit.org>
parents:
1858
diff
changeset
|
11 void cs_end(void); |
7 | 12 /* vim: set ft=c : */ |