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 7c0ea07 commit 640453bCopy full SHA for 640453b
packages/jupyterlab-lsp/src/features/completion/renderer.ts
@@ -213,6 +213,9 @@ export class LSPCompletionRenderer
213
})
214
.catch(this.options.console.warn);
215
return this.options.markdownRenderer.node;
216
+ } else if (item.source != 'LSP') {
217
+ // fallback to default implementation for non-LSP completions
218
+ return super.createDocumentationNode(item);
219
} else {
220
let node = document.createElement('pre');
221
if (item.documentation) {
0 commit comments