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
Check whether Revise is running at startup, and if so configure it (JuliaLang#708)
Revise checks whether IJulia is running in its `__init__` function,
and if so defines an appropriate `preexecute_hook`.
However, I believe most users of Revise who also use the REPL
configure it in their `.julia/config/startup.jl` script.
It appears that this script runs before IJulia is loaded, and
as a consequence Revise has no chance to detect whether it should
define the hook.
To make both work independent of load order, we therefore have to check
symmetrically: Revise checks for IJulia, and IJulia checks for Revise.
Fixestimholy/Revise.jl#150
0 commit comments