Show document highlights from the language server when moving the cursor
This commit is contained in:
parent
0aeb23519f
commit
e140f70e3c
8 changed files with 472 additions and 49 deletions
|
@ -157,6 +157,8 @@ messages!(
|
|||
(GetCompletionsResponse, Foreground),
|
||||
(GetDefinition, Foreground),
|
||||
(GetDefinitionResponse, Foreground),
|
||||
(GetDocumentHighlights, Foreground),
|
||||
(GetDocumentHighlightsResponse, Foreground),
|
||||
(GetReferences, Foreground),
|
||||
(GetReferencesResponse, Foreground),
|
||||
(GetProjectSymbols, Background),
|
||||
|
@ -210,6 +212,7 @@ request_messages!(
|
|||
(GetCodeActions, GetCodeActionsResponse),
|
||||
(GetCompletions, GetCompletionsResponse),
|
||||
(GetDefinition, GetDefinitionResponse),
|
||||
(GetDocumentHighlights, GetDocumentHighlightsResponse),
|
||||
(GetReferences, GetReferencesResponse),
|
||||
(GetProjectSymbols, GetProjectSymbolsResponse),
|
||||
(GetUsers, GetUsersResponse),
|
||||
|
@ -245,6 +248,7 @@ entity_messages!(
|
|||
GetCodeActions,
|
||||
GetCompletions,
|
||||
GetDefinition,
|
||||
GetDocumentHighlights,
|
||||
GetReferences,
|
||||
GetProjectSymbols,
|
||||
JoinProject,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue