We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fb9e66d + 620411d commit 9f2b4efCopy full SHA for 9f2b4ef
crates/rust-analyzer/src/to_proto.rs
@@ -432,8 +432,7 @@ pub(crate) fn inlay_hint(
432
},
433
kind: match inlay_hint.kind {
434
InlayKind::ParameterHint => Some(lsp_ext::InlayHintKind::PARAMETER),
435
- InlayKind::TypeHint => Some(lsp_ext::InlayHintKind::TYPE),
436
- InlayKind::ChainingHint => None,
+ InlayKind::TypeHint | InlayKind::ChainingHint => Some(lsp_ext::InlayHintKind::TYPE),
437
438
tooltip: None,
439
padding_left: Some(match inlay_hint.kind {
0 commit comments