Trigger hover requests on closing brace hints

This commit is contained in:
Lukas Wirth
2022-05-17 13:39:45 +02:00
parent 0756719a30
commit a2ec010185
4 changed files with 91 additions and 26 deletions

View File

@@ -518,6 +518,11 @@ pub struct CompletionResolveData {
pub imports: Vec<CompletionImport>,
}
#[derive(Debug, Serialize, Deserialize)]
pub struct InlayHintResolveData {
pub position: lsp_types::TextDocumentPositionParams,
}
#[derive(Debug, Serialize, Deserialize)]
pub struct CompletionImport {
pub full_import_path: String,