Stop Julia sidebar from appearing automatically every time I display a plot in VS Code

Steps to reproduce: In the VS Code REPL, type

using PyPlot
plot([0,1],[0,1])
display(gcf())

What I expected to happen: A new plot pane opens up to display the plot.

What actually happens: The above, but in addition it also opens the Julia side bar.

Is there a way to stop the sidebar from appearing?

4 Likes

In the settings for VSCode, search for the option “Julia: Use Plot Navigator” and unselect it.

7 Likes

It will look like this:

4 Likes