I’ve just installed a Julia package, and now I’d like to open one of its functions to see how it works.
In Matlab, if a function is anywhere in the file path, I could open it via
open myfunction.m
or I could specify the directory with something like
open Users/myname/path/to/myfunction.m
Is there an equivalent Julia command to open a file from the REPL?
Another way to open files in Matlab is to navigate to them in the Current Folder window and double-click on the file. In the Julia workspace in VS Code I’m expecting to be able to double click on these Julia functions to open them, but when I try, nothing happens:
I feel like I must be missing something obvious–Is there a way to open Julia functions?