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 ex_cwindow(exarg_T *eap); 11void ex_cclose(exarg_T *eap); 12void ex_copen(exarg_T *eap); 13void ex_cbottom(exarg_T *eap); 14linenr_T qf_current_entry(win_T *wp); 15int grep_internal(cmdidx_T cmdidx); 16void ex_make(exarg_T *eap); 17int qf_get_size(exarg_T *eap); 18int qf_get_cur_idx(exarg_T *eap); 19int qf_get_cur_valid_idx(exarg_T *eap); 20void ex_cc(exarg_T *eap); 21void ex_cnext(exarg_T *eap); 22void ex_cfile(exarg_T *eap); 23void ex_vimgrep(exarg_T *eap); 24int get_errorlist(win_T *wp, int qf_idx, list_T *list); 25int get_errorlist_properties(win_T *wp, dict_T *what, dict_T *retdict); 26int set_errorlist(win_T *wp, list_T *list, int action, char_u *title, dict_T *what); 27int set_ref_in_quickfix(int copyID); 28void ex_cbuffer(exarg_T *eap); 29void ex_cexpr(exarg_T *eap); 30void ex_helpgrep(exarg_T *eap); 31/* vim: set ft=c : */ 32