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
MyDependency
if either one of the following conditions is satisfied- there is a
using MyDependency
statement at the top of my file - my file is in
src/
andinclude
d in the moduleMyPackage
(which also contains theusing MyDependency
statement)
- there is a
- never works for
MyTestDependency
- never works for
MyPackage
Did I get that right?