Figure renderers - vscode

When I try to plot something in VS-Code.

fig = go.Figure()
fig.add_scatter(x=xs, y=X)
fig.show(renderer='vscode')

no plot is being displayed, only some metadata is shown in the terminal.

I know I can use fig.show() and have the figure appear in the browser, but what is the vscode renderer for?

Hi @ursus, I experience the same problem when I execute fig.show(renderer="vscode") but it is working when I execute fig.show()