aboutsummaryrefslogtreecommitdiff
path: root/runtime/lua/vim/lsp/util.lua
diff options
context:
space:
mode:
authorjdrouhard <john@jmdtech.org>2021-10-10 13:41:16 -0500
committerGitHub <noreply@github.com>2021-10-10 11:41:16 -0700
commit45fa70adcb165a94d0dd3af0591b48d0d0da29dd (patch)
treef052615249ca5a99951462e02ff798986b5a781c /runtime/lua/vim/lsp/util.lua
parentf4359b5dbdd5ed9aa230532382edd7eb6cd0a61b (diff)
downloadrneovim-45fa70adcb165a94d0dd3af0591b48d0d0da29dd.tar.gz
rneovim-45fa70adcb165a94d0dd3af0591b48d0d0da29dd.tar.bz2
rneovim-45fa70adcb165a94d0dd3af0591b48d0d0da29dd.zip
fix(lsp): add done flag to messages returned in util.get_progress_messages() (#15985)
Diffstat (limited to 'runtime/lua/vim/lsp/util.lua')
-rw-r--r--runtime/lua/vim/lsp/util.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/runtime/lua/vim/lsp/util.lua b/runtime/lua/vim/lsp/util.lua
index fca956fb57..3751f94caf 100644
--- a/runtime/lua/vim/lsp/util.lua
+++ b/runtime/lua/vim/lsp/util.lua
@@ -193,6 +193,7 @@ function M.get_progress_messages()
title = ctx.title or "empty title",
message = ctx.message,
percentage = ctx.percentage,
+ done = ctx.done,
progress = true,
}
table.insert(new_messages, new_report)