Let’s say I’m developing a package called MyPackage and I have activated its Project.toml. It has one dependency called MyDependency, and one test depency called MyTestDependency.
After some exploration, it seems that IntelliSense…
- works for
MyDependencyif either one of the following conditions is satisfied- there is a
using MyDependencystatement at the top of my file - my file is in
src/andincluded in the moduleMyPackage(which also contains theusing MyDependencystatement)
- there is a
- never works for
MyTestDependency - never works for
MyPackage
Did I get that right?