Skip to content

Instantly share code, notes, and snippets.

@jsundram
Created December 10, 2020 20:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jsundram/f87b155395a0ba798139bd4a1e6bd88d to your computer and use it in GitHub Desktop.
Save jsundram/f87b155395a0ba798139bd4a1e6bd88d to your computer and use it in GitHub Desktop.
`IJulia.history()` prints everything on one line in jupyter-console, not sure why; this is a quick workaround
function history()
map(sort(collect(keys(IJulia.In)))) do k
println(k, ": ", IJulia.In[k])
end;
return Nothing;
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment