Forward inlay hint refresh requests to clients, test coop inlay hints
This commit is contained in:
parent
a68e68a0d9
commit
890b164278
7 changed files with 366 additions and 13 deletions
|
@ -139,6 +139,7 @@ message Envelope {
|
|||
|
||||
InlayHints inlay_hints = 114;
|
||||
InlayHintsResponse inlay_hints_response = 115;
|
||||
RefreshInlayHints refresh_inlay_hints = 116;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -761,6 +762,10 @@ message InlayHintLabelPartTooltip {
|
|||
}
|
||||
}
|
||||
|
||||
message RefreshInlayHints {
|
||||
uint64 project_id = 1;
|
||||
}
|
||||
|
||||
message MarkupContent {
|
||||
string kind = 1;
|
||||
string value = 2;
|
||||
|
|
|
@ -200,6 +200,7 @@ messages!(
|
|||
(OnTypeFormattingResponse, Background),
|
||||
(InlayHints, Background),
|
||||
(InlayHintsResponse, Background),
|
||||
(RefreshInlayHints, Foreground),
|
||||
(Ping, Foreground),
|
||||
(PrepareRename, Background),
|
||||
(PrepareRenameResponse, Background),
|
||||
|
@ -289,6 +290,7 @@ request_messages!(
|
|||
(PrepareRename, PrepareRenameResponse),
|
||||
(OnTypeFormatting, OnTypeFormattingResponse),
|
||||
(InlayHints, InlayHintsResponse),
|
||||
(RefreshInlayHints, Ack),
|
||||
(ReloadBuffers, ReloadBuffersResponse),
|
||||
(RequestContact, Ack),
|
||||
(RemoveContact, Ack),
|
||||
|
@ -336,6 +338,7 @@ entity_messages!(
|
|||
PerformRename,
|
||||
OnTypeFormatting,
|
||||
InlayHints,
|
||||
RefreshInlayHints,
|
||||
PrepareRename,
|
||||
ReloadBuffers,
|
||||
RemoveProjectCollaborator,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue