xref: /vim-8.2.3635/src/proto/quickfix.pro (revision fc65cabb)
1/* quickfix.c */
2int qf_init(win_T *wp, char_u *efile, char_u *errorformat, int newlist, char_u *qf_title, char_u *enc);
3void qf_free_all(win_T *wp);
4void copy_loclist(win_T *from, win_T *to);
5void qf_jump(qf_info_T *qi, int dir, int errornr, int forceit);
6void qf_list(exarg_T *eap);
7void qf_age(exarg_T *eap);
8void qf_history(exarg_T *eap);
9void qf_mark_adjust(win_T *wp, linenr_T line1, linenr_T line2, long amount, long amount_after);
10void qf_view_result(int split);
11void ex_cwindow(exarg_T *eap);
12void ex_cclose(exarg_T *eap);
13void ex_copen(exarg_T *eap);
14void ex_cbottom(exarg_T *eap);
15linenr_T qf_current_entry(win_T *wp);
16int grep_internal(cmdidx_T cmdidx);
17void ex_make(exarg_T *eap);
18int qf_get_size(exarg_T *eap);
19int qf_get_cur_idx(exarg_T *eap);
20int qf_get_cur_valid_idx(exarg_T *eap);
21void ex_cc(exarg_T *eap);
22void ex_cnext(exarg_T *eap);
23void ex_cfile(exarg_T *eap);
24void ex_vimgrep(exarg_T *eap);
25int get_errorlist(qf_info_T *qi_arg, win_T *wp, int qf_idx, list_T *list);
26int qf_get_properties(win_T *wp, dict_T *what, dict_T *retdict);
27int set_errorlist(win_T *wp, list_T *list, int action, char_u *title, dict_T *what);
28int set_ref_in_quickfix(int copyID);
29void ex_cbuffer(exarg_T *eap);
30void ex_cexpr(exarg_T *eap);
31void ex_helpgrep(exarg_T *eap);
32/* vim: set ft=c : */
33