Skip to content

Commit 8fa31b6

Browse files
authored
Merge pull request #2570 from OmniSharp/jorobich/add-inlayhint-type
2 parents 22d97e0 + 914ec87 commit 8fa31b6

File tree

6 files changed

+67
-42
lines changed

6 files changed

+67
-42
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
# Changelog
22
All changes to the project will be documented in this file.
33

4+
## [1.39.9] - 2023-10-04
5+
* Add Kind parameter to InlayHint (PR: [#2570](https://github.dev/OmniSharp/omnisharp-roslyn/pull/2570))
6+
* Do not include commit characters if the typed span is empty (PR: [#2569](https://github.com/OmniSharp/omnisharp-roslyn/pull/2569))
7+
* Update Roslyn to version 4.9.0-1.23504.3 (PR: [#2567](https://github.com/OmniSharp/omnisharp-roslyn/pull/2567))
8+
* Async diagnostics analyzer work queue (PR: [#2351](https://github.com/OmniSharp/omnisharp-roslyn/pull/2351))
9+
* Add InlayHint implementation to OmniSharp.LSP (PR: [#2566](https://github.com/OmniSharp/omnisharp-roslyn/pull/2566))
10+
* Include the project file name when invoking `dotnet build` (PR: [#2565](https://github.com/OmniSharp/omnisharp-roslyn/pull/2565))
11+
* feat: ignore diagnostics for generated code (PR: [#2509](https://github.com/OmniSharp/omnisharp-roslyn/pull/2509))
12+
* Update documentation to reflect --stdio flag deprecation (#2439) (PR: [#2554](https://github.com/OmniSharp/omnisharp-roslyn/pull/2554))
13+
* Update Roslyn to version 4.8.0-1.23374.10 (PR: [#2555](https://github.com/OmniSharp/omnisharp-roslyn/pull/2555))
14+
* Use double quote when quoting un script path (PR: [#2553](https://github.com/OmniSharp/omnisharp-roslyn/pull/2553))
15+
416
## [1.39.8] - 2023-07-17
517
* Use core LSP TokenTypes where possible and validate token names (PR: [#2548](https://github.com/OmniSharp/omnisharp-roslyn/pull/2548))
618

src/OmniSharp.Abstractions/Models/v1/InlayHints/InlayHint.cs

+6
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ public sealed record InlayHint
1616
/// </summary>
1717
public string Label { get; set; }
1818

19+
/// <summary>
20+
/// The kind of this hint. Can be omitted in which case the client
21+
/// should fall back to a reasonable default.
22+
/// </summary>
23+
public InlayHintKind? Kind { get; set; }
24+
1925
/// <summary>
2026
/// The tooltip text when you hover over this item.
2127
/// </summary>

src/OmniSharp.LanguageServerProtocol/Handlers/OmniSharpInlayHintHandler.cs

+2
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ private static LSPInlayHint ToLSPInlayHint(OmniSharpInlayHint hint)
7777
return new LSPInlayHint()
7878
{
7979
Label = trimmedLabel,
80+
Kind = hint.Kind.HasValue ? ConvertEnum<OmniSharpInlayHintKind, LSPInlayHintKind>(hint.Kind.Value) : null,
8081
Tooltip = hint.Tooltip is not null
8182
? new MarkupContent() { Kind = MarkupKind.Markdown, Value = hint.Tooltip }
8283
: null,
@@ -93,6 +94,7 @@ private static OmniSharpInlayHint FromLSPInlayHint(LSPInlayHint hint)
9394
return new OmniSharpInlayHint()
9495
{
9596
Label = $"{(hint.PaddingLeft == true ? " " : "")}{hint.Label.String}{(hint.PaddingRight == true ? " " : "")}",
97+
Kind = hint.Kind.HasValue ? ConvertEnum<LSPInlayHintKind, OmniSharpInlayHintKind>(hint.Kind.Value) : null,
9698
Tooltip = hint.Tooltip is not null
9799
? hint.Tooltip.HasMarkupContent
98100
? hint.Tooltip.MarkupContent.Value

src/OmniSharp.Roslyn.CSharp/Services/InlayHints/InlayHintService.cs

+5
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ internal class InlayHintService :
3535
private readonly InlineHintCache _cache;
3636
private readonly FormattingOptions _formattingOptions;
3737

38+
private const double ParameterRanking = 0.0;
39+
3840
[ImportingConstructor]
3941
public InlayHintService(OmniSharpWorkspace workspace, FormattingOptions formattingOptions, ILoggerFactory loggerFactory, IOptionsMonitor<OmniSharpOptions> omniSharpOptions)
4042
{
@@ -140,6 +142,9 @@ public List<InlayHint> MapAndCacheHints(ImmutableArray<OmniSharpInlineHint> rosl
140142
resultList.Add(new InlayHint()
141143
{
142144
Label = string.Concat(hint.DisplayParts),
145+
Kind = hint.Ranking == ParameterRanking
146+
? InlayHintKind.Parameter
147+
: InlayHintKind.Type,
143148
Position = text.GetPointFromPosition(hint.Span.End),
144149
TextEdits = ConvertToTextChanges(hint.ReplacementTextChange, text),
145150
Data = (solutionVersionString, position)

0 commit comments

Comments
 (0)