diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-07-28 23:53:41 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-07-28 23:58:34 -0400 |
commit | eaa2cd9f7c65a684267318a7cc46db64e3431dbb (patch) | |
tree | 680349c863ae79241d664e92d99655ee4e3a1d30 /src/nvim/quickfix.c | |
parent | 91b8210779c11d5ff6c37929f67d76fd738987b5 (diff) | |
download | rneovim-eaa2cd9f7c65a684267318a7cc46db64e3431dbb.tar.gz rneovim-eaa2cd9f7c65a684267318a7cc46db64e3431dbb.tar.bz2 rneovim-eaa2cd9f7c65a684267318a7cc46db64e3431dbb.zip |
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)
https://github.com/vim/vim/commit/a8788f4d0b991f466b607c2c5bc6fd600bc78a97
Diffstat (limited to 'src/nvim/quickfix.c')
-rw-r--r-- | src/nvim/quickfix.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c index 73cb79ef8a..4308c4e87e 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -2887,6 +2887,7 @@ static void qf_update_buffer(qf_info_T *qi, qfline_T *old_last) qf_update_win_titlevar(qi); qf_fill_buffer(qi, buf, old_last); + buf_inc_changedtick(buf); if (old_last == NULL) { (void)qf_win_pos_update(qi, 0); |