Merge branch 'feat/tagfunc'
[vim_extended.git] / src / proto / quickfix.pro
blobcca2ee2927fea4cbdd5ed0caca661c3f8a2b9fee
1 /* quickfix.c */
2 int qf_init __ARGS((win_T *wp, char_u *efile, char_u *errorformat, int newlist, char *qf_title));
3 char* qf_get_name __ARGS((qf_info_T *qi));
4 void ex_csettitle __ARGS((exarg_T *eap));
5 void qf_free_all __ARGS((win_T *wp));
6 void copy_loclist __ARGS((win_T *from, win_T *to));
7 void qf_jump __ARGS((qf_info_T *qi, int dir, int errornr, int forceit));
8 void qf_list __ARGS((exarg_T *eap));
9 void qf_age __ARGS((exarg_T *eap));
10 void qf_mark_adjust __ARGS((win_T *wp, linenr_T line1, linenr_T line2, long amount, long amount_after));
11 void ex_cwindow __ARGS((exarg_T *eap));
12 void ex_cclose __ARGS((exarg_T *eap));
13 void ex_copen __ARGS((exarg_T *eap));
14 linenr_T qf_current_entry __ARGS((win_T *wp));
15 int bt_quickfix __ARGS((buf_T *buf));
16 int bt_nofile __ARGS((buf_T *buf));
17 int bt_dontwrite __ARGS((buf_T *buf));
18 int bt_dontwrite_msg __ARGS((buf_T *buf));
19 int buf_hide __ARGS((buf_T *buf));
20 int grep_internal __ARGS((cmdidx_T cmdidx));
21 void ex_make __ARGS((exarg_T *eap));
22 void ex_cc __ARGS((exarg_T *eap));
23 void ex_cnext __ARGS((exarg_T *eap));
24 void ex_cfile __ARGS((exarg_T *eap));
25 void ex_vimgrep __ARGS((exarg_T *eap));
26 char_u *skip_vimgrep_pat __ARGS((char_u *p, char_u **s, int *flags));
27 int get_errorlist __ARGS((win_T *wp, list_T *list));
28 int set_errorlist __ARGS((win_T *wp, list_T *list, int action));
29 void ex_cbuffer __ARGS((exarg_T *eap));
30 void ex_cexpr __ARGS((exarg_T *eap));
31 void ex_helpgrep __ARGS((exarg_T *eap));
32 /* vim: set ft=c : */