comparison src/proto/quickfix.pro @ 15024:3a3c9b638187 v8.1.0523

patch 8.1.0523: opening window from quickfix leaves empty buffer behind commit https://github.com/vim/vim/commit/b244373becbec124bee20dbbfd05365586cda8cd Author: Bram Moolenaar <Bram@vim.org> Date: Sun Nov 11 22:50:27 2018 +0100 patch 8.1.0523: opening window from quickfix leaves empty buffer behind Problem: Opening window from quickfix leaves empty buffer behind. Solution: Add qf_jump_newwin(). (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/2574)
author Bram Moolenaar <Bram@vim.org>
date Sun, 11 Nov 2018 23:00:05 +0100
parents 69d2749a6a2f
children 2fe4a503c5ad
comparison
equal deleted inserted replaced
15023:c6fe8685e092 15024:3a3c9b638187
2 int qf_init(win_T *wp, char_u *efile, char_u *errorformat, int newlist, char_u *qf_title, char_u *enc); 2 int qf_init(win_T *wp, char_u *efile, char_u *errorformat, int newlist, char_u *qf_title, char_u *enc);
3 void qf_free_all(win_T *wp); 3 void qf_free_all(win_T *wp);
4 void check_quickfix_busy(void); 4 void check_quickfix_busy(void);
5 void copy_loclist_stack(win_T *from, win_T *to); 5 void copy_loclist_stack(win_T *from, win_T *to);
6 void qf_jump(qf_info_T *qi, int dir, int errornr, int forceit); 6 void qf_jump(qf_info_T *qi, int dir, int errornr, int forceit);
7 void qf_jump_newwin(qf_info_T *qi, int dir, int errornr, int forceit, int newwin);
7 void qf_list(exarg_T *eap); 8 void qf_list(exarg_T *eap);
8 void qf_age(exarg_T *eap); 9 void qf_age(exarg_T *eap);
9 void qf_history(exarg_T *eap); 10 void qf_history(exarg_T *eap);
10 void qf_mark_adjust(win_T *wp, linenr_T line1, linenr_T line2, long amount, long amount_after); 11 void qf_mark_adjust(win_T *wp, linenr_T line1, linenr_T line2, long amount, long amount_after);
11 void qf_view_result(int split); 12 void qf_view_result(int split);