comparison src/proto/quickfix.pro @ 12252:3d0e042ec13c v8.0.1006

patch 8.0.1006: quickfix list changes when parsing text with 'erroformat' commit https://github.com/vim/vim/commit/7adf06f4e25c795ba32ff0b2e8591330f6a41afb Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 27 15:23:41 2017 +0200 patch 8.0.1006: quickfix list changes when parsing text with 'erroformat' Problem: Cannot parse text with 'erroformat' without changing a quickfix list. Solution: Add the "text" argument to getqflist(). (Yegappan Lakshmanan)
author Christian Brabandt <cb@256bit.org>
date Sun, 27 Aug 2017 15:30:05 +0200
parents 77bf0346687e
children fc3e2d5614dd
comparison
equal deleted inserted replaced
12251:9b6c3d136e7f 12252:3d0e042ec13c
19 int qf_get_cur_valid_idx(exarg_T *eap); 19 int qf_get_cur_valid_idx(exarg_T *eap);
20 void ex_cc(exarg_T *eap); 20 void ex_cc(exarg_T *eap);
21 void ex_cnext(exarg_T *eap); 21 void ex_cnext(exarg_T *eap);
22 void ex_cfile(exarg_T *eap); 22 void ex_cfile(exarg_T *eap);
23 void ex_vimgrep(exarg_T *eap); 23 void ex_vimgrep(exarg_T *eap);
24 int get_errorlist(win_T *wp, int qf_idx, list_T *list); 24 int get_errorlist(qf_info_T *qi, win_T *wp, int qf_idx, list_T *list);
25 int get_errorlist_properties(win_T *wp, dict_T *what, dict_T *retdict); 25 int get_errorlist_properties(win_T *wp, dict_T *what, dict_T *retdict);
26 int set_errorlist(win_T *wp, list_T *list, int action, char_u *title, dict_T *what); 26 int set_errorlist(win_T *wp, list_T *list, int action, char_u *title, dict_T *what);
27 int set_ref_in_quickfix(int copyID); 27 int set_ref_in_quickfix(int copyID);
28 void ex_cbuffer(exarg_T *eap); 28 void ex_cbuffer(exarg_T *eap);
29 void ex_cexpr(exarg_T *eap); 29 void ex_cexpr(exarg_T *eap);