lsp: add $/progress report (#13294)

Heavily inspired by https://github.com/nvim-lua/lsp-status.nvim.
listen to the LspProgressUpdate event to update your statusline.
This commit is contained in:
Matthieu Coudron
2020-12-20 21:59:25 +01:00
committed by GitHub
parent b1711e6f92
commit 1e59134834
4 changed files with 103 additions and 0 deletions

View File

@@ -728,6 +728,9 @@ function protocol.make_client_capabilities()
dynamicRegistration = false;
};
experimental = nil;
window = {
workDoneProgress = true;
}
}
end