Move highlighting to editor code and implement proto message types for hover response
This commit is contained in:
parent
c7cc07aafb
commit
67d9abc00f
7 changed files with 279 additions and 184 deletions
|
@ -436,8 +436,14 @@ message GetHover {
|
|||
}
|
||||
|
||||
message GetHoverResponse {
|
||||
repeated CodeAction actions = 1;
|
||||
repeated VectorClockEntry version = 2;
|
||||
optional Anchor start = 1;
|
||||
optional Anchor end = 2;
|
||||
repeated HoverBlock contents = 3;
|
||||
}
|
||||
|
||||
message HoverBlock {
|
||||
string text = 1;
|
||||
optional string language = 2;
|
||||
}
|
||||
|
||||
message ApplyCodeAction {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue