Use proper property names for inlay hint resolve capabilities
This commit is contained in:
parent
805ae1be80
commit
3bfe78b1df
1 changed files with 7 additions and 1 deletions
|
@ -435,7 +435,13 @@ impl LanguageServer {
|
||||||
}),
|
}),
|
||||||
inlay_hint: Some(InlayHintClientCapabilities {
|
inlay_hint: Some(InlayHintClientCapabilities {
|
||||||
resolve_support: Some(InlayHintResolveClientCapabilities {
|
resolve_support: Some(InlayHintResolveClientCapabilities {
|
||||||
properties: vec!["textEdits".to_string(), "tooltip".to_string()],
|
properties: vec![
|
||||||
|
"textEdits".to_string(),
|
||||||
|
"tooltip".to_string(),
|
||||||
|
"label.tooltip".to_string(),
|
||||||
|
"label.location".to_string(),
|
||||||
|
"label.command".to_string(),
|
||||||
|
],
|
||||||
}),
|
}),
|
||||||
dynamic_registration: Some(false),
|
dynamic_registration: Some(false),
|
||||||
}),
|
}),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue