A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/vim/vim/commit/bb07b1ac14c4014acebd27dd011802ea4755308a below:

proto files are outdated · vim/vim@bb07b1a · GitHub

File tree Expand file treeCollapse file tree 12 files changed

+31

-29

lines changed

Filter options

Expand file treeCollapse file tree 12 files changed

+31

-29

lines changed Original file line number Diff line number Diff line change

@@ -3,7 +3,7 @@ int cmdline_fuzzy_complete(char_u *fuzzystr);

3 3

int nextwild(expand_T *xp, int type, int options, int escape);

4 4

void cmdline_pum_display(void);

5 5

int cmdline_pum_active(void);

6 -

void cmdline_pum_remove(cmdline_info_T *cclp, int defer);

6 +

void cmdline_pum_remove(cmdline_info_T *cclp, int defer_redraw);

7 7

void cmdline_pum_cleanup(cmdline_info_T *cclp);

8 8

int cmdline_compl_startcol(void);

9 9

char_u *cmdline_compl_pattern(void);

@@ -25,5 +25,5 @@ int wildmenu_process_key(cmdline_info_T *cclp, int key, expand_T *xp);

25 25

void wildmenu_cleanup(cmdline_info_T *cclp);

26 26

void f_getcompletion(typval_T *argvars, typval_T *rettv);

27 27

void f_getcompletiontype(typval_T *argvars, typval_T *rettv);

28 -

void f_cmdcomplete_info(typval_T *argvars UNUSED, typval_T *rettv);

28 +

void f_cmdcomplete_info(typval_T *argvars, typval_T *rettv);

29 29

/* vim: set ft=c : */

Original file line number Diff line number Diff line change

@@ -16,15 +16,15 @@ void diff_clear(tabpage_T *tp);

16 16

int diff_check_with_linestatus(win_T *wp, linenr_T lnum, int *linestatus);

17 17

int diff_check_fill(win_T *wp, linenr_T lnum);

18 18

void diff_set_topline(win_T *fromwin, win_T *towin);

19 -

int diffanchors_changed(int local);

19 +

int diffanchors_changed(int buflocal);

20 20

int diffopt_changed(void);

21 21

int diffopt_horizontal(void);

22 22

int diffopt_hiddenoff(void);

23 23

int diffopt_closeoff(void);

24 24

void diff_update_line(linenr_T lnum);

25 25

#ifdef FEAT_DIFF

26 -

int diff_change_parse( diffline_T *diffline, diffline_change_T *change, int *change_start, int *change_end);

27 -

int diff_find_change( win_T *wp, linenr_T lnum, diffline_T *diffline);

26 +

int diff_change_parse(diffline_T *diffline, diffline_change_T *change, int *change_start, int *change_end);

27 +

int diff_find_change(win_T *wp, linenr_T lnum, diffline_T *diffline);

28 28

#endif

29 29

int diff_infold(win_T *wp, linenr_T lnum);

30 30

void nv_diffgetput(int put, long count);

Original file line number Diff line number Diff line change

@@ -16,7 +16,6 @@ int cmdmod_error(int ignore_silent);

16 16

void apply_cmdmod(cmdmod_T *cmod);

17 17

void undo_cmdmod(cmdmod_T *cmod);

18 18

int parse_cmd_address(exarg_T *eap, char **errormsg, int silent);

19 -

linenr_T get_address(exarg_T *eap, char_u **ptr, cmd_addr_T addr_type, int skip, int silent, int to_other_file, int address_count);

20 19

char_u *skip_option_env_lead(char_u *start);

21 20

int number_method(char_u *cmd);

22 21

char_u *find_ex_command(exarg_T *eap, int *full, int (*lookup)(char_u *, size_t, int cmd, cctx_T *), cctx_T *cctx);

@@ -26,6 +25,7 @@ void f_fullcommand(typval_T *argvars, typval_T *rettv);

26 25

cmdidx_T excmd_get_cmdidx(char_u *cmd, int len);

27 26

long excmd_get_argt(cmdidx_T idx);

28 27

char_u *skip_range(char_u *cmd_start, int skip_star, int *ctx);

28 +

linenr_T get_address(exarg_T *eap, char_u **ptr, cmd_addr_T addr_type, int skip, int silent, int to_other_file, int address_count);

29 29

void ex_ni(exarg_T *eap);

30 30

int expand_filename(exarg_T *eap, char_u **cmdlinep, char **errormsgp);

31 31

void separate_nextcmd(exarg_T *eap, int keep_backslash);

Original file line number Diff line number Diff line change

@@ -1,4 +1,5 @@

1 1

/* ex_getln.c */

2 +

int parse_pattern_and_range(pos_T *incsearch_start, int *search_delim, int *skiplen, int *patlen);

2 3

void cmdline_init(void);

3 4

char_u *getcmdline(int firstc, long count, int indent, getline_opt_T do_concat);

4 5

char_u *getcmdline_prompt(int firstc, char_u *prompt, int attr, int xp_context, char_u *xp_arg);

@@ -39,12 +40,11 @@ void f_getcmdscreenpos(typval_T *argvars, typval_T *rettv);

39 40

void f_getcmdtype(typval_T *argvars, typval_T *rettv);

40 41

void f_setcmdline(typval_T *argvars, typval_T *rettv);

41 42

void f_setcmdpos(typval_T *argvars, typval_T *rettv);

42 -

void f_wildtrigger(typval_T *argvars, typval_T *rettv);

43 43

int get_cmdline_firstc(void);

44 44

int get_list_range(char_u **str, int *num1, int *num2);

45 45

char *did_set_cedit(optset_T *args);

46 46

int is_in_cmdwin(void);

47 47

char_u *script_get(exarg_T *eap, char_u *cmd);

48 48

void get_user_input(typval_T *argvars, typval_T *rettv, int inputdialog, int secret);

49 -

int parse_pattern_and_range(pos_T *is_start, int *search_delim, int *skiplen, int *patlen);

49 +

void f_wildtrigger(typval_T *argvars, typval_T *rettv);

50 50

/* vim: set ft=c : */

Original file line number Diff line number Diff line change

@@ -15,9 +15,9 @@ int ctrl_x_mode_function(void);

15 15

int ctrl_x_mode_omni(void);

16 16

int ctrl_x_mode_spell(void);

17 17

int ctrl_x_mode_line_or_eval(void);

18 +

int ctrl_x_mode_register(void);

18 19

int ctrl_x_mode_not_default(void);

19 20

int ctrl_x_mode_not_defined_yet(void);

20 -

int ctrl_x_mode_register(void);

21 21

int compl_status_adding(void);

22 22

int compl_status_sol(void);

23 23

int compl_status_local(void);

@@ -51,27 +51,27 @@ int ins_compl_preinsert_effect(void);

51 51

int ins_compl_bs(void);

52 52

void ins_compl_addleader(int c);

53 53

void ins_compl_addfrommatch(void);

54 +

int ins_compl_cancel(void);

54 55

int ins_compl_prep(int c);

55 56

char *did_set_completefunc(optset_T *args);

56 57

void set_buflocal_cfu_callback(buf_T *buf);

57 58

char *did_set_omnifunc(optset_T *args);

58 59

void set_buflocal_ofu_callback(buf_T *buf);

60 +

void clear_cpt_callbacks(callback_T **callbacks, int count);

61 +

void set_buflocal_cpt_callbacks(buf_T *buf);

62 +

int set_cpt_callbacks(optset_T *args);

59 63

char *did_set_thesaurusfunc(optset_T *args);

64 +

int set_ref_in_cpt_callbacks(callback_T *callbacks, int count, int copyID);

60 65

int set_ref_in_insexpand_funcs(int copyID);

61 66

void f_complete(typval_T *argvars, typval_T *rettv);

62 67

void f_complete_add(typval_T *argvars, typval_T *rettv);

63 68

void f_complete_check(typval_T *argvars, typval_T *rettv);

69 +

void f_complete_match(typval_T *argvars, typval_T *rettv);

64 70

void f_complete_info(typval_T *argvars, typval_T *rettv);

65 71

void ins_compl_delete(void);

66 72

void ins_compl_insert(int move_cursor);

67 73

void ins_compl_check_keys(int frequency, int in_compl_func);

68 74

int ins_complete(int c, int enable_pum);

69 -

void free_insexpand_stuff(void);

70 -

int ins_compl_cancel(void);

71 -

void f_complete_match(typval_T *argvars, typval_T *rettv);

72 75

int ins_compl_setup_autocompl(int c);

73 -

void set_buflocal_cpt_callbacks(buf_T *buf);

74 -

int set_cpt_callbacks(optset_T *args);

75 -

void clear_cpt_callbacks(callback_T **cb, int count);

76 -

int set_ref_in_cpt_callbacks(callback_T *callbacks, int count, int copyID);

76 +

void free_insexpand_stuff(void);

77 77

/* vim: set ft=c : */

Original file line number Diff line number Diff line change

@@ -1,5 +1,4 @@

1 1

/* option.c */

2 -

char *did_set_showtabpanel(optset_T *args);

3 2

void set_init_1(int clean_arg);

4 3

void set_fencs_unicode(void);

5 4

void set_string_default(char *name, char_u *val);

@@ -64,8 +63,8 @@ char *did_set_previewwindow(optset_T *args);

64 63

char *did_set_pyxversion(optset_T *args);

65 64

char *did_set_readonly(optset_T *args);

66 65

char *did_set_scrollbind(optset_T *args);

67 -

char *did_set_shellslash(optset_T *args);

68 66

char *did_set_maxsearchcount(optset_T *args);

67 +

char *did_set_shellslash(optset_T *args);

69 68

char *did_set_shiftwidth_tabstop(optset_T *args);

70 69

char *did_set_showtabline(optset_T *args);

71 70

char *did_set_smoothscroll(optset_T *args);

@@ -154,4 +153,5 @@ dict_T *get_winbuf_options(int bufopt);

154 153

int fill_culopt_flags(char_u *val, win_T *wp);

155 154

int magic_isset(void);

156 155

int option_set_callback_func(char_u *optval, callback_T *optcb);

156 +

char *did_set_showtabpanel(optset_T *args);

157 157

/* vim: set ft=c : */

Original file line number Diff line number Diff line change

@@ -1,6 +1,4 @@

1 1

/* optionstr.c */

2 -

char *did_set_tabpanelopt(optset_T *args);

3 -

int expand_set_tabpanelopt(optexpand_T *args, int *numMatches, char_u ***matches);

4 2

void didset_string_options(void);

5 3

void trigger_optionset_string(int opt_idx, int opt_flags, char_u *oldval, char_u *oldval_l, char_u *oldval_g, char_u *newval);

6 4

void check_buf_options(buf_T *buf);

@@ -34,7 +32,7 @@ int expand_set_buftype(optexpand_T *args, int *numMatches, char_u ***matches);

34 32

char *did_set_casemap(optset_T *args);

35 33

int expand_set_casemap(optexpand_T *args, int *numMatches, char_u ***matches);

36 34

int expand_set_clipboard(optexpand_T *args, int *numMatches, char_u ***matches);

37 -

char * did_set_clipmethod(optset_T *args);

35 +

char *did_set_clipmethod(optset_T *args);

38 36

int expand_set_clipmethod(optexpand_T *args, int *numMatches, char_u ***matches);

39 37

char *did_set_chars_option(optset_T *args);

40 38

int expand_set_chars_option(optexpand_T *args, int *numMatches, char_u ***matches);

@@ -139,6 +137,8 @@ char *did_set_renderoptions(optset_T *args);

139 137

char *did_set_rightleftcmd(optset_T *args);

140 138

int expand_set_rightleftcmd(optexpand_T *args, int *numMatches, char_u ***matches);

141 139

char *did_set_rulerformat(optset_T *args);

140 +

char *did_set_tabpanelopt(optset_T *args);

141 +

int expand_set_tabpanelopt(optexpand_T *args, int *numMatches, char_u ***matches);

142 142

char *did_set_scrollopt(optset_T *args);

143 143

int expand_set_scrollopt(optexpand_T *args, int *numMatches, char_u ***matches);

144 144

char *did_set_wlseat(optset_T *args);

Original file line number Diff line number Diff line change

@@ -64,8 +64,8 @@ void f_popup_findpreview(typval_T *argvars, typval_T *rettv);

64 64

int popup_create_preview_window(int info);

65 65

void popup_close_preview(void);

66 66

void popup_hide_info(void);

67 -

int popup_overlaps_cmdline(void);

68 67

void popup_close_info(void);

68 +

int popup_overlaps_cmdline(void);

69 69

win_T *popup_get_message_win(void);

70 70

void popup_show_message_win(void);

71 71

int popup_message_win_visible(void);

Original file line number Diff line number Diff line change

@@ -1,7 +1,7 @@

1 1

/* tabpanel.c */

2 +

int tabpanelopt_changed(void);

2 3

int tabpanel_width(void);

3 4

int tabpanel_leftcol(void);

4 -

int tabpanelopt_changed(void);

5 5

void draw_tabpanel(void);

6 6

int get_tabpagenr_on_tabpanel(void);

7 7

/* vim: set ft=c : */

Original file line number Diff line number Diff line change

@@ -9,7 +9,7 @@ char_u *get_user_cmd_addr_type(expand_T *xp, int idx);

9 9

char_u *get_user_cmd_flags(expand_T *xp, int idx);

10 10

char_u *get_user_cmd_nargs(expand_T *xp, int idx);

11 11

char_u *get_user_cmd_complete(expand_T *xp, int idx);

12 -

char_u *cmdcomplete_type_to_str(int expand, char_u *arg);

12 +

char_u *cmdcomplete_type_to_str(int expand, char_u *compl_arg);

13 13

int cmdcomplete_str_to_type(char_u *complete_str);

14 14

char *uc_fun_cmd(void);

15 15

int parse_compl_arg(char_u *value, int vallen, int *complp, long *argt, char_u **compl_arg);

You can’t perform that action at this time.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4