If you fire up julia repl, and type Core.<tab>
you get tab completion of the Core module. One of the components is also called Core., so doing more tab completion... Core.Core.<tab> Gives tab completion of the Core module, but with the path Core.Core. And it continues recursively Core.Core.Core.<tab> I started yesterday and I'm still going... This also happens with user defined packages/modules, and using these recursive path lists work, but on using, it defaults to the top level. eg using Pkg.Pkg.Pgk.Pkg x = Pkg.myfunction(123) Anyway, I'm wondering if anyone can offer up the reason for this recursive behaviour? Thanks John
