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