We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
MarkdownString
documentation
1 parent 2b4fb4b commit 8542447Copy full SHA for 8542447
packages/plugin-ext/src/plugin/languages/completion.ts
@@ -153,13 +153,17 @@ export class CompletionAdapter {
153
? [CompletionItemTag.Deprecated]
154
: undefined;
155
156
+ const documentation = typeof item.documentation !== 'undefined'
157
+ ? Converter.fromMarkdown(item.documentation)
158
+ : undefined;
159
+
160
return {
161
id,
162
parentId,
163
label: item.label,
164
kind: Converter.fromCompletionItemKind(item.kind),
165
detail: item.detail,
- documentation: item.documentation,
166
+ documentation,
167
filterText: item.filterText,
168
sortText: item.sortText,
169
preselect: item.preselect,
0 commit comments