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
Whether and how many stdlib & jll packages hidden
No need to say "to unhide, pass ..": can say that in REPL :)
Btw, to give these numbers -- and to make the heuristic decision! -- we do need to crawl for them! (I.e. can't early stop in tree search in depgraph)
So there's diff between filtering them out post hoc, or not even crawling (expanding them)
So, the :hide option should split (or should stay, but mean sth more specific and there should be a new sibling option)
{:ignore, :hide, :fade, :normal, :auto (default)}
" :auto chooses between the latter three:
:normal if pkg is itself in the standard library
:hide if not, and if there are more than hidethreshold() stdlib packages in the graph
:fade otherwise.
I.e. we do show stdlib dependencies (but faded), if there aren't too many to clutter the graph.
"
stdlib
is then not true/false, but rather: {:auto
(default),:fade
,:hide
,:normal
}From
:auto
chooses between:fade
and:hide
.Based on some heuristic that avoids the eldritch Plots.jl horror of here:
(we could keep
false
as an option, for backwards compat; and for consistency withjll
, for which we provide no fade nor auto-hide)The text was updated successfully, but these errors were encountered: