commit | a8788f4d0b991f466b607c2c5bc6fd600bc78a97 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed Jul 19 17:06:20 2017 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Wed Jul 19 17:06:20 2017 +0200 |
tree | 7032ca522308bd2fbca33006d15ff8376c302830 | |
parent | bf92e3a3719f255dbb30102ceb618e0eac7c9497 [diff] [blame] |
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)
diff --git a/src/quickfix.c b/src/quickfix.c index bc891bf..2adfc52 100644 --- a/src/quickfix.c +++ b/src/quickfix.c
@@ -3286,6 +3286,7 @@ qf_update_win_titlevar(qi); qf_fill_buffer(qi, buf, old_last); + ++CHANGEDTICK(buf); if (old_last == NULL) {