How do I list the variables I've created?

Since I can’t re-use variables in Pluto, and it can be a chore to look for the conflicting var in a big notebook, how do I list the variables I’ve already created? So far, every single suggestion I’ve searched, such as varinfo(), is either outmoded or returns a lot of garbola but not a simple list of my variables.

varinfo seems to wok in Pluto, but you need to specify some options:
varinfo(@__MODULE__(), imported=true).

1 Like

Thanks. That worked. You get one virtual coffee at the Programmer’s Milkbar :smiley:

By the way you can Ctrl+ click on each global variable in Pluto to get to its definition.