nixd
|
#include <Protocol.h>
Public Attributes | |
std::string | title |
bool | cancellable = false |
bool | percentage = false |
To start progress reporting a $/progress notification with the following payload must be sent.
Definition at line 637 of file lspserver/include/lspserver/Protocol.h.
bool lspserver::WorkDoneProgressBegin::cancellable = false |
Controls if a cancel button should show to allow the user to cancel the long-running operation. Clients that don't support cancellation are allowed to ignore the setting.
Definition at line 647 of file lspserver/include/lspserver/Protocol.h.
Referenced by lspserver::toJSON().
bool lspserver::WorkDoneProgressBegin::percentage = false |
Optional progress percentage to display (value 100 is considered 100%). If not provided infinite progress is assumed and clients are allowed to ignore the percentage
value in subsequent in report notifications.
The value should be steadily rising. Clients are free to ignore values that are not following this rule.
Clangd implementation note: we only send nonzero percentages in the WorkProgressReport. 'true' here means percentages will be used.
Definition at line 658 of file lspserver/include/lspserver/Protocol.h.
Referenced by lspserver::toJSON().
std::string lspserver::WorkDoneProgressBegin::title |
Mandatory title of the progress operation. Used to briefly inform about the kind of operation being performed.
Examples: "Indexing" or "Linking dependencies".
Definition at line 642 of file lspserver/include/lspserver/Protocol.h.
Referenced by lspserver::toJSON().