Skip to content

Commit

Permalink
Merge pull request #1909 from 333fred/hover-markdown
Browse files Browse the repository at this point in the history
Correctly mark hover markup content as markdown
  • Loading branch information
filipw authored Aug 23, 2020
2 parents d5f7a77 + 2dc6740 commit 8f1b99b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public async override Task<Hover> Handle(HoverParams request, CancellationToken
{
// TODO: Range? We don't currently have that!
// Range =
Contents = new MarkedStringsOrMarkupContent(new MarkupContent() { Value = omnisharpResponse.Markdown })
Contents = new MarkedStringsOrMarkupContent(new MarkupContent() { Value = omnisharpResponse.Markdown, Kind = MarkupKind.Markdown })
};
}
}
Expand Down

0 comments on commit 8f1b99b

Please sign in to comment.