1
0
forked from aniani/vim

patch 8.1.0877: new buffer used every time the quickfix window is opened

Problem:    New buffer used every time the quickfix window is opened.
Solution:   Reuse the buffer. (Yegappan Lakshmanan, closes #3902)
This commit is contained in:
Bram Moolenaar
2019-02-05 21:23:04 +01:00
parent 2a78b7c704
commit ee8188fc74
5 changed files with 110 additions and 33 deletions

View File

@@ -1,5 +1,6 @@
/* quickfix.c */
int qf_init(win_T *wp, char_u *efile, char_u *errorformat, int newlist, char_u *qf_title, char_u *enc);
int qf_stack_get_bufnr(void);
void qf_free_all(win_T *wp);
void check_quickfix_busy(void);
void copy_loclist_stack(win_T *from, win_T *to);