We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acc4e20 commit f06da5aCopy full SHA for f06da5a
src/features/completionProvider.ts
@@ -124,9 +124,8 @@ export default class OmnisharpCompletionProvider extends AbstractProvider implem
124
const insertRange = omnisharpCompletion.TextEdit ? mapRange(omnisharpCompletion.TextEdit) : undefined;
125
126
return {
127
- label: omnisharpCompletion.Label,
+ label: { label: omnisharpCompletion.Label, description: omnisharpCompletion.Detail },
128
kind: omnisharpCompletion.Kind - 1,
129
- detail: omnisharpCompletion.Detail,
130
documentation: docs,
131
commitCharacters: omnisharpCompletion.CommitCharacters,
132
preselect: omnisharpCompletion.Preselect,
0 commit comments