Skip to content

Commit 42eafa7

Browse files
committed
Fix reporting of lsp provider id
1 parent d56c242 commit 42eafa7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/workbench/contrib/terminalContrib/suggest/browser/lspCompletionProviderAddon.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export class LspCompletionProviderAddon extends Disposable implements ITerminalA
6161
const completionItemTemp = createCompletionItemPython(cursorPosition, textBeforeCursor, convertedKind, 'lspCompletionItem', undefined);
6262
const terminalCompletion: ITerminalCompletion = {
6363
label: item.label,
64-
provider: `lsp:${item.extensionId}`,
64+
provider: `lsp:${item.extensionId?.value}`,
6565
detail: item.detail,
6666
documentation: item.documentation,
6767
kind: convertedKind,

0 commit comments

Comments
 (0)