You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The right side like on the screenshot bellow isn't shown in completions pop up window starting from v0.4.2130 nightly version, the last good was v0.4.2128.
Current situation on latest v0.4.2133:
The text was updated successfully, but these errors were encountered:
ahlinc
changed the title
RA nightly starting from v0.4.2130 don't show method signatures in completion popup window
RA nightly starting from v0.4.2130 doesn't show method signatures in completion popup window
Oct 4, 2024
fix: include description in label details when detail field is marked for …
Fixesrust-lang/rust-analyzer#18231.
When omitting the autocomplete detail field, the autocomplete label details can still be returned. Currently the label details are missing the description field if the detail field is included in resolveSupport since it is being overwritten as None and opted to be sent with `completionItem/resolve`.
Example completion capabilities.
```
completion = {
completionItem = {
commitCharactersSupport = true,
deprecatedSupport = true,
documentationFormat = { "markdown", "plaintext" },
insertReplaceSupport = true,
insertTextModeSupport = {
valueSet = { 1, 2 }
},
labelDetailsSupport = true,
preselectSupport = true,
resolveSupport = {
properties = { "documentation", "detail", "additionalTextEdits", "sortText", "filterText", "insertText", "textEdit", "insertTextFormat", "insertTextMode" }
},
snippetSupport = true,
tagSupport = {
valueSet = { 1 }
}
}
```
fix: include description in label details when detail field is marked for …
Fixesrust-lang/rust-analyzer#18231.
When omitting the autocomplete detail field, the autocomplete label details can still be returned. Currently the label details are missing the description field if the detail field is included in resolveSupport since it is being overwritten as None and opted to be sent with `completionItem/resolve`.
Example completion capabilities.
```
completion = {
completionItem = {
commitCharactersSupport = true,
deprecatedSupport = true,
documentationFormat = { "markdown", "plaintext" },
insertReplaceSupport = true,
insertTextModeSupport = {
valueSet = { 1, 2 }
},
labelDetailsSupport = true,
preselectSupport = true,
resolveSupport = {
properties = { "documentation", "detail", "additionalTextEdits", "sortText", "filterText", "insertText", "textEdit", "insertTextFormat", "insertTextMode" }
},
snippetSupport = true,
tagSupport = {
valueSet = { 1 }
}
}
```
The right side like on the screenshot bellow isn't shown in completions pop up window starting from v0.4.2130 nightly version, the last good was v0.4.2128.
Current situation on latest v0.4.2133:
The text was updated successfully, but these errors were encountered: