Files
neovim/runtime/lua/vim
runiq 7e7fdca163 fix(lsp): unify progress message handling (#18040)
The LSP progress handler would put non-progress messages (such as from
clangd or pyls; not part of the LSP spec) directly into
`client.messages`, while `vim.lsp.util.get_progress_messages()` would
try to fetch them from `client.messages.messages` instead (and come up
empty everytime). This would result in these messages never being
cleaned up by `get_progress_messages()`.

This commit fixes that by treating those messages like show-once
progress messages (by setting `done=true` immediately).
2022-04-20 18:40:52 +02:00
..
2018-12-20 11:57:30 +01:00
2021-11-27 11:10:48 -05:00
2022-03-24 12:01:04 -07:00
2022-04-15 12:35:06 +02:00