diff options
author | jdrouhard <john@jmdtech.org> | 2021-10-10 13:41:16 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-10 11:41:16 -0700 |
commit | 45fa70adcb165a94d0dd3af0591b48d0d0da29dd (patch) | |
tree | f052615249ca5a99951462e02ff798986b5a781c | |
parent | f4359b5dbdd5ed9aa230532382edd7eb6cd0a61b (diff) | |
download | rneovim-45fa70adcb165a94d0dd3af0591b48d0d0da29dd.tar.gz rneovim-45fa70adcb165a94d0dd3af0591b48d0d0da29dd.tar.bz2 rneovim-45fa70adcb165a94d0dd3af0591b48d0d0da29dd.zip |
fix(lsp): add done flag to messages returned in util.get_progress_messages() (#15985)
-rw-r--r-- | runtime/lua/vim/lsp/util.lua | 1 |
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) |