In the Julia REPL if I have a super-module Food which loads in a sub-module
Fruit,
module Food
using Fruit
include("nutrition.jl")
export carbohydrate
export fat
export protein
end
then pressing tab after typing,
Food.
I get the list,
carbohydrate fat protein
But the sub-module Fruit does not show up for tab completion. However,
after manually typing,
Food.Fruit.
I do have tab completion for everything which is exported by the Fruit
sub-module.
Could this behavior be changed to support tab completion for sub-modules
names? This will facilitate working with nested modules.