1
0
forked from aniani/vim

patch 8.0.0735: no indication that the quickfix window/buffer changed

Problem:    There is no way to notice that the quickfix window contents has
            changed.
Solution:   Increment b:changedtick when updating the quickfix window.
            (Yegappan Lakshmanan)
This commit is contained in:
Bram Moolenaar
2017-07-19 17:06:20 +02:00
parent bf92e3a371
commit a8788f4d0b
4 changed files with 30 additions and 1 deletions

View File

@@ -3286,6 +3286,7 @@ qf_update_buffer(qf_info_T *qi, qfline_T *old_last)
qf_update_win_titlevar(qi);
qf_fill_buffer(qi, buf, old_last);
++CHANGEDTICK(buf);
if (old_last == NULL)
{