I am using a dev’ed package in a notebook inside VSCode (great new feature!). When the code in the package changes the notebook does not detect the change.
using Revise
is the first statement in the notebook but that doesn’t seem to make any difference.
The only way I’ve found to get the notebook to update is to kill VSCode and restart. Anybody else experienced this problem?
Running Linux Mint 19.2, Julia version 1.6.2, VSCode 1.58.2
I have similar problem. For me Revise also doesn’t work for normal .jl files in VSCode.
Julia 1.6.3
vscode-julia v1.4.3
Revise v3.1.20
Furthermore, is it known that sometimes modules like CSV or DataFrames aren’t loaded when executed via ALT+ Enter. In example if I request to evaluate several lines of code via ALT + Enter, I would expect that they are evaluated in the order I send the request, but sometimes it skips lines like using DataFrames or move on. Then the following code gives an error because it depends on the modules. It happens to me only when I use ALT + Enter.
When I in example, only request to evaluate all modules, I will not get a succesful flag for the modules and if request to evaluate them again it works