aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-05-27 00:01:41 +0200
committerGitHub <noreply@github.com>2019-05-27 00:01:41 +0200
commitfb4d5a184678ab231da20ef559c8e423dfa54d6e (patch)
tree16026d36f0ed2edb689f1fb7c8017739f57227ae /src
parent1ca84897a0d65b0afbb2141f12a2061dabeb6b09 (diff)
downloadrneovim-fb4d5a184678ab231da20ef559c8e423dfa54d6e.tar.gz
rneovim-fb4d5a184678ab231da20ef559c8e423dfa54d6e.tar.bz2
rneovim-fb4d5a184678ab231da20ef559c8e423dfa54d6e.zip
UI/ext_messages: restore kind=quickfix #10067
Accidentally removed in 34f9e72af9c9. ref #6201
Diffstat (limited to 'src')
-rw-r--r--src/nvim/quickfix.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c
index 8036d3e3bc..9d4fb52dc3 100644
--- a/src/nvim/quickfix.c
+++ b/src/nvim/quickfix.c
@@ -2328,6 +2328,7 @@ static void qf_jump_print_msg(qf_info_T *qi, int qf_index, qfline_T *qf_ptr,
} else if (!msg_scrolled && shortmess(SHM_OVERALL)) {
msg_scroll = false;
}
+ msg_ext_set_kind("quickfix");
msg_attr_keep(IObuff, 0, true, false);
msg_scroll = (int)i;
}