You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
execute cell (alt-enter) when no Julia kernel is running. First line shows atom's executable path. Only second line shows the first project's path.
It looks like it's actually the printing that triggers the path change, e.g.,
pwds = [(pwd()) for _=1:10]
foreach(println, pwds)
println(pwd())
Prints the atom's path 10 times, then the project's path. The path is also correctly set after a call to sleep or yield, but not after other long-running commands like using Plots.
The text was updated successfully, but these errors were encountered:
Similar to #239.
Details
Steps to reproduce
In a new script/cell:
execute cell (alt-enter) when no Julia kernel is running. First line shows atom's executable path. Only second line shows the first project's path.
It looks like it's actually the printing that triggers the path change, e.g.,
Prints the atom's path 10 times, then the project's path. The path is also correctly set after a call to
sleep
oryield
, but not after other long-running commands likeusing Plots
.The text was updated successfully, but these errors were encountered: