You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using two modules that export the same function, running the autocompletion for another module with using <TAB> in the REPL prints warnings about previous modules defining functions with the same name:
julia>using Plots
julia>using Gaston
julia>using<TAB> WARNING: both Gaston and Plots export"histogram"; uses of it inmodule Main must be qualified
WARNING: both Gaston and Plots export"plot"; uses of it inmodule Main must be qualified
Should this instead be printed after using Gaston is entered?
The text was updated successfully, but these errors were encountered:
When
using
two modules that export the same function, running the autocompletion for another module withusing <TAB>
in the REPL prints warnings about previous modules defining functions with the same name:Should this instead be printed after
using Gaston
is entered?The text was updated successfully, but these errors were encountered: