blob: 4f61d5932cf2e55cc45f55bf50e03ef21794e784 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* quickfix.c */
2int qf_init __ARGS((char_u *efile, char_u *errorformat, int newlist));
3void qf_jump __ARGS((int dir, int errornr, int forceit));
4void qf_list __ARGS((exarg_T *eap));
5void qf_age __ARGS((exarg_T *eap));
6void qf_mark_adjust __ARGS((linenr_T line1, linenr_T line2, long amount, long amount_after));
7void ex_cwindow __ARGS((exarg_T *eap));
8void ex_cclose __ARGS((exarg_T *eap));
9void ex_copen __ARGS((exarg_T *eap));
10linenr_T qf_current_entry __ARGS((void));
11int bt_quickfix __ARGS((buf_T *buf));
12int bt_nofile __ARGS((buf_T *buf));
13int bt_dontwrite __ARGS((buf_T *buf));
14int bt_dontwrite_msg __ARGS((buf_T *buf));
15int buf_hide __ARGS((buf_T *buf));
Bram Moolenaar8fc061c2004-12-29 21:03:02 +000016int grep_internal __ARGS((cmdidx_T cmdidx));
Bram Moolenaar071d4272004-06-13 20:20:40 +000017void ex_make __ARGS((exarg_T *eap));
18void ex_cc __ARGS((exarg_T *eap));
19void ex_cnext __ARGS((exarg_T *eap));
20void ex_cfile __ARGS((exarg_T *eap));
Bram Moolenaar86b68352004-12-27 21:59:20 +000021void ex_vimgrep __ARGS((exarg_T *eap));
Bram Moolenaar6ac54292005-02-02 23:07:25 +000022char_u *skip_vimgrep_pat __ARGS((char_u *p, char_u **s));
Bram Moolenaar86b68352004-12-27 21:59:20 +000023void ex_cbuffer __ARGS((exarg_T *eap));
Bram Moolenaar071d4272004-06-13 20:20:40 +000024void ex_helpgrep __ARGS((exarg_T *eap));
25/* vim: set ft=c : */