Skip to content
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.

Commit

Permalink
Use markdown to fix the formating in suggest docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ramya-rao-a committed Nov 1, 2018
1 parent 3a693e5 commit 3ba34e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/goSuggest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export class GoCompletionItemProvider implements vscode.CompletionItemProvider {
doc += goDocLines[i].substring(4) + '\n';
}

item.documentation = doc;
item.documentation = new vscode.MarkdownString(doc);
resolve(item);
});
});
Expand Down

0 comments on commit 3ba34e0

Please sign in to comment.