Skip to content

Commit fd929b9

Browse files
committed
..
1 parent 9e7bd74 commit fd929b9

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ vim is built with `--with-features=tiny`. More features will be enabled graduall
2222
- node.js
2323
- streamline.js
2424
- closure compiler
25-
- GCC & cproto (in case you need to generate the .pro files)
25+
- GCC & cproto (sometimes you need to run `make proto`)
2626
- Get yourself familiar with everything above and also:
2727
- source code of vim
2828
- JavaScript, and also HTML/CSS

src/proto/ex_docmd.pro

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ int parse_compl_arg __ARGS((char_u *value, int vallen, int *complp, long *argt,
2525
void not_exiting __ARGS((void));
2626
void tabpage_close __ARGS((int forceit));
2727
void tabpage_close_other __ARGS((tabpage_T *tp, int forceit));
28-
void ex_ni __ARGS((exarg_T *eap));
28+
void ex_all __ARGS((exarg_T *eap));
2929
void handle_drop __ARGS((int filec, char_u **filev, int split));
3030
void alist_clear __ARGS((alist_T *al));
3131
void alist_init __ARGS((alist_T *al));
@@ -35,6 +35,8 @@ void alist_expand __ARGS((int *fnum_list, int fnum_len));
3535
void alist_set __ARGS((alist_T *al, int count, char_u **files, int use_curbuf, int *fnum_list, int fnum_len));
3636
void alist_add __ARGS((alist_T *al, char_u *fname, int set_fnum));
3737
void alist_slash_adjust __ARGS((void));
38+
void ex_splitview __ARGS((exarg_T *eap));
39+
void tabpage_new __ARGS((void));
3840
void do_exedit __ARGS((exarg_T *eap, win_T *old_curwin));
3941
void free_cd_dir __ARGS((void));
4042
void post_chdir __ARGS((int local));

src/proto/gui_browser.pro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,17 @@ void gui_mch_draw_hollow_cursor __ARGS((guicolor_T color));
3030
void gui_mch_draw_part_cursor __ARGS((int w, int h, guicolor_T color));
3131
void gui_mch_update __ARGS((void));
3232
int gui_mch_wait_for_chars __ARGS((int wtime));
33-
void gui_browser_add_to_input_buf __ARGS((int which));
33+
void gui_browser_handle_key __ARGS((int code, int modifiers, char_u special1, char_u special2));
3434
void gui_mch_flush __ARGS((void));
3535
void gui_mch_clear_block __ARGS((int row1, int col1, int row2, int col2));
3636
void gui_mch_clear_all __ARGS((void));
3737
void gui_mch_delete_lines __ARGS((int row, int num_lines));
38+
void gui_mch_set_text_area_pos __ARGS((int x, int y, int w, int h));
3839
void gui_mch_insert_lines __ARGS((int row, int num_lines));
3940
void clip_mch_request_selection __ARGS((VimClipboard *cbd));
4041
void clip_mch_lose_selection __ARGS((VimClipboard *cbd));
4142
int clip_mch_own_selection __ARGS((VimClipboard *cbd));
4243
void clip_mch_set_selection __ARGS((VimClipboard *cbd));
43-
void gui_mch_set_text_area_pos __ARGS((int x, int y, int w, int h));
4444
void gui_mch_enable_menu __ARGS((int flag));
4545
void gui_mch_set_menu_pos __ARGS((int x, int y, int w, int h));
4646
void gui_mch_add_menu __ARGS((vimmenu_T *menu, int idx));

src/proto/mark.pro

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ void ex_jumps __ARGS((exarg_T *eap));
1919
void ex_changes __ARGS((exarg_T *eap));
2020
void mark_adjust __ARGS((linenr_T line1, linenr_T line2, long amount, long amount_after));
2121
void mark_col_adjust __ARGS((linenr_T lnum, colnr_T mincol, long lnum_amount, long col_amount));
22+
void copy_jumplist __ARGS((win_T *from, win_T *to));
23+
void free_jumplist __ARGS((win_T *wp));
2224
void set_last_cursor __ARGS((win_T *win));
2325
void free_all_marks __ARGS((void));
2426
int read_viminfo_filemark __ARGS((vir_T *virp, int force));

src/proto/screen.pro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ int screen_ins_lines __ARGS((int off, int row, int line_count, int end, win_T *w
4444
int screen_del_lines __ARGS((int off, int row, int line_count, int end, int force, win_T *wp));
4545
int showmode __ARGS((void));
4646
void unshowmode __ARGS((int force));
47+
void get_trans_bufname __ARGS((buf_T *buf));
4748
int redrawing __ARGS((void));
4849
int messaging __ARGS((void));
4950
void showruler __ARGS((int always));

0 commit comments

Comments
 (0)